Move and refactor DashboardHeader component to dashboards/components

pull/10616/head
Hunter Trujillo 2017-02-16 15:15:21 -07:00
parent 0f2cffd3c9
commit 87937e8bc3
4 changed files with 3 additions and 3 deletions

View File

@ -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';

View File

@ -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';

View File

@ -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({