wix-style-react
Version:
wix-style-react
15 lines (11 loc) • 546 B
JavaScript
import React from 'react';
import { storiesOf } from '@storybook/react';
import Markdown from 'wix-storybook-utils/Markdown';
import Readme from '../../README.md';
import UsageWithoutYoshiReadme from '../../docs/usage-without-yoshi.md';
storiesOf('Introduction', module).add('Getting started', function () {
return React.createElement(Markdown, { source: Readme });
}).add('Usage Without Yoshi', function () {
return React.createElement(Markdown, { source: UsageWithoutYoshiReadme });
});
//TODO - add contriubtion docs links here somehow