From 65220cc8db0d7c63f49627526466d54969958fe1 Mon Sep 17 00:00:00 2001 From: Nick Van Doorn Date: Fri, 29 Mar 2019 00:35:56 -0700 Subject: Init commit --- stories/index.stories.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 stories/index.stories.js (limited to 'stories') diff --git a/stories/index.stories.js b/stories/index.stories.js new file mode 100644 index 0000000..70d60b5 --- /dev/null +++ b/stories/index.stories.js @@ -0,0 +1,31 @@ +import React from 'react' + +import { storiesOf } from '@storybook/react' +import { action } from '@storybook/addon-actions' +import { linkTo } from '@storybook/addon-links' + +import { Button, Welcome } from '@storybook/react/demo' + +import { DemoComponent } from '../src/demo-component' + +storiesOf('DemoComponent', module).add('to Storybook', () => ( + +

Hello world

+
+)) + +storiesOf('Welcome', module).add('to Storybook', () => ( + +)) + +storiesOf('Button', module) + .add('with text', () => ( + + )) + .add('with some emoji', () => ( + + )) -- cgit v1.2.3