UNPKG

@olistic/storyshots

Version:

Storyshots - Jest Snapshot Testing for React Storybook.

12 lines (10 loc) 350 B
import React from 'react' import { storiesOf, action } from '@kadira/storybook' import Button from './Button' storiesOf('Another Button', module) .add('with text', () => ( <Button onClick={action('clicked')}>Hello Button</Button> )) .add('with some emoji', () => ( <Button onClick={action('clicked')}>😀 😎 👍 💯</Button> ))