created visualizations folder

This commit is contained in:
Torkel Ödegaard
2018-12-25 10:20:20 +01:00
parent 493714c27d
commit 2dfa3269c3
5 changed files with 4 additions and 9 deletions
@@ -1,2 +1 @@
export { DeleteButton } from './DeleteButton/DeleteButton';
export { Graph } from './Graph/Graph';
+1
View File
@@ -1,3 +1,4 @@
export * from './components';
export * from './visualizations';
export * from './types';
export * from './utils';
@@ -0,0 +1 @@
export { Graph } from './Graph/Graph';
@@ -3,14 +3,8 @@ import _ from 'lodash';
import React, { PureComponent } from 'react';
import colors from 'app/core/utils/colors';
// Components
import { Graph } from '@grafana/ui';
// Services & Utils
import { processTimeSeries } from '@grafana/ui';
// Types
import { PanelProps, NullValueMode } from '@grafana/ui';
// Components & Types
import { Graph, PanelProps, NullValueMode, processTimeSeries } from '@grafana/ui';
import { Options } from './types';
interface Props extends PanelProps<Options> {}