Move and refactor DashboardHeader component to dashboards/components
parent
0f2cffd3c9
commit
87937e8bc3
|
@ -3,7 +3,7 @@ import {Link} from 'react-router';
|
|||
import _ from 'lodash';
|
||||
|
||||
import LayoutRenderer from 'shared/components/LayoutRenderer';
|
||||
import DashboardHeader from 'shared/components/DashboardHeader';
|
||||
import DashboardHeader from 'src/dashboards/components/DashboardHeader';
|
||||
import timeRanges from 'hson!../../shared/data/timeRanges.hson';
|
||||
|
||||
import {getDashboards} from '../apis';
|
||||
|
|
|
@ -5,7 +5,7 @@ import _ from 'lodash'
|
|||
import classnames from 'classnames';
|
||||
|
||||
import LayoutRenderer from 'shared/components/LayoutRenderer';
|
||||
import DashboardHeader from 'shared/components/DashboardHeader';
|
||||
import DashboardHeader from 'src/dashboards/components/DashboardHeader';
|
||||
import timeRanges from 'hson!../../shared/data/timeRanges.hson';
|
||||
import {getMappings, getAppsForHosts, getMeasurementsForHost, getAllHosts} from 'src/hosts/apis';
|
||||
import {fetchLayouts} from 'shared/apis';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import React, {PropTypes} from 'react';
|
||||
import LayoutRenderer from 'shared/components/LayoutRenderer';
|
||||
import DashboardHeader from 'shared/components/DashboardHeader';
|
||||
import DashboardHeader from 'src/dashboards/components/DashboardHeader';
|
||||
import timeRanges from 'hson!../../shared/data/timeRanges.hson';
|
||||
|
||||
export const KubernetesPage = React.createClass({
|
||||
|
|
Loading…
Reference in New Issue