Skip to content

Instantly share code, notes, and snippets.

@pekkis
Created February 2, 2017 08:32
Show Gist options
  • Save pekkis/c05100653dd03e8008449dba293900b9 to your computer and use it in GitHub Desktop.
Save pekkis/c05100653dd03e8008449dba293900b9 to your computer and use it in GitHub Desktop.
import React from 'react';
import { storiesOf, action } from '@kadira/storybook';
import Button from './Button';
storiesOf('Button', module)
.add('Primary button', () => (
<Button
role="primary"
onClick={action('clixuti')}
>
Primary
</Button>
))
.add('Secondary button', () => (
<Button
role="secondary"
onClick={action('clixuti')}
>
Secondary
</Button>
))
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment