import * as React from 'react'; import {withInfo} from '@storybook/addon-info'; import {boolean, select, withKnobs} from '@storybook/addon-knobs'; import {storyLayout} from '../../index.stories'; import {LabelValueList} from './LabelValueList'; // eslint-disable-next-line no-restricted-syntax export default { title: 'LabelValue', decorators: [withInfo, storyLayout, withKnobs] }; export const labelValueList = () => { return ( ); };