wix-style-react
Version:
wix-style-react
20 lines (17 loc) • 531 B
JavaScript
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)
);
});