From 3bd26df7dea850dafec16e7f51150a7b27e75840 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 8 Mar 2019 20:49:45 -0800 Subject: [PATCH] cleanup --- .../components/Table/TableInputCSV.story.tsx | 2 -- .../src/utils/storybook/withFullSizeStory.tsx | 23 ------------------- 2 files changed, 25 deletions(-) delete mode 100644 packages/grafana-ui/src/utils/storybook/withFullSizeStory.tsx diff --git a/packages/grafana-ui/src/components/Table/TableInputCSV.story.tsx b/packages/grafana-ui/src/components/Table/TableInputCSV.story.tsx index 3f6ee6c0ae5..1c0feb7e64b 100644 --- a/packages/grafana-ui/src/components/Table/TableInputCSV.story.tsx +++ b/packages/grafana-ui/src/components/Table/TableInputCSV.story.tsx @@ -2,12 +2,10 @@ import React from 'react'; import { storiesOf } from '@storybook/react'; import TableInputCSV, { ParseResults } from './TableInputCSV'; -//import { withFullSizeStory } from '../../utils/storybook/withFullSizeStory'; const TableInputStories = storiesOf('UI/Table/Input', module); TableInputStories.add('default', () => { - //return withFullSizeStory(TableInputCSV, {}); return (
, props: any) => ( -
- - {({ width, height }) => ( - <> - {React.createElement(component, { - ...props, - width, - height, - })} - - )} - -
-);