minor fixes

This commit is contained in:
Torkel Ödegaard
2018-11-23 15:01:36 +01:00
parent daee874ee6
commit 39a1b11cb3
7 changed files with 27 additions and 13 deletions

View File

@@ -1,4 +1,5 @@
import React from 'react';
import { hot } from 'react-hot-loader';
import ReactGridLayout from 'react-grid-layout';
import { GRID_CELL_HEIGHT, GRID_CELL_VMARGIN, GRID_COLUMN_COUNT } from 'app/core/constants';
import { DashboardPanel } from './DashboardPanel';
@@ -213,3 +214,5 @@ export class DashboardGrid extends React.Component<DashboardGridProps, any> {
);
}
}
export default hot(module)(DashboardGrid);