UNPKG

@olistic/storyshots

Version:

Storyshots - Jest Snapshot Testing for React Storybook.

18 lines (15 loc) 491 B
import React from 'react' import { storiesOf, action, linkTo } from '@kadira/storybook' import Button from './Button' import Welcome from './Welcome' storiesOf('Welcome', module) .add('to Storybook', () => ( <Welcome showApp={linkTo('Button')} /> )) storiesOf('Button', module) .add('with text', () => ( <Button onClick={action('clicked')}>Hello Button</Button> )) .add('with some emoji', () => ( <Button onClick={action('clicked')}>😀 😎 👍 💯</Button> ))