wix-style-react
Version:
wix-style-react
20 lines (18 loc) • 721 B
JavaScript
import React from 'react';
import { storiesOf } from '@storybook/react';
import InteractiveCodeExample from 'wix-storybook-utils/InteractiveCodeExample';
import Markdown from 'wix-storybook-utils/Markdown';
import ReadMe from '../../src/RichTextAreaComposite/README.md';
import RichTextAreaCompositeExample from './RichTextAreaCompositeExample';
storiesOf('3. Inputs', module).add('3.2b RichTextAreaComposite', function () {
return React.createElement(
'div',
null,
React.createElement(Markdown, { source: ReadMe }),
React.createElement(
InteractiveCodeExample,
{ title: 'Customize a <RichTextAreaComposite/>' },
React.createElement(RichTextAreaCompositeExample, null)
)
);
});