UNPKG

wix-style-react

Version:
20 lines (17 loc) 531 B
import React from 'react'; import { storiesOf } from '@storybook/react'; import { getTestStoryKind } from '../storiesHierarchy'; import MainExample from './MainExample'; import { storySettings } from './storySettings'; import { RTLWrapper } from '../utils'; var kind = getTestStoryKind({ category: storySettings.category, storyName: storySettings.storyName }); storiesOf(kind, module).add('1. Toolbar', function () { return React.createElement( RTLWrapper, null, React.createElement(MainExample, null) ); });