import { h } from 'preact'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { linkTo } from '@storybook/addon-links'; import { Button, Welcome } from '@storybook/react/demo'; storiesOf('Welcome', module).add('to Storybook', () => ( )); storiesOf('Button', module) .add('with text', () => ( )) .add('with some emoji', () => ( ));