import React from 'react' import { StoryFn, Meta } from '@storybook/react' import IVRichTextEditor from '.' export default { title: 'Components/IVRichTextEditor', component: IVRichTextEditor, } as Meta const Template: StoryFn = args => ( ) export const Default = Template.bind({}) Default.args = { defaultValue: '

Hello!

', onChange: () => { /* */ }, } export const Disabled = Template.bind({}) Disabled.args = { disabled: true, onChange: () => { /* */ }, }