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