import React from 'react' import { StoryFn, Meta } from '@storybook/react' import Component from '.' export default { title: 'Components/HelpText', component: Component, } as Meta const Template: StoryFn = args => export const Default = Template.bind({}) Default.args = { children: 'This is help text, it typically appears below a form field.\n\nLine breaks are supported.', }