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, - })} - - )} - -
-);