import React from 'react'; import {withInfo} from '@storybook/addon-info'; import {action} from '@storybook/addon-actions'; import TextCopyInput from 'app/views/settings/components/forms/textCopyInput'; export default { title: 'Utility/TextCopyInput', }; export const _TextCopyInput = withInfo('Description')(() => ( Value to be copied )); _TextCopyInput.story = { name: 'TextCopyInput', };