17 lines
313 B
JavaScript
Raw Normal View History

2016-07-06 18:10:36 -03:00
import React from 'react';
import { storiesOf, action } from '@kadira/storybook';
2016-07-06 18:10:36 -03:00
import FindBar from '../FindBar/FindBar';
2016-07-06 18:10:36 -03:00
2016-07-07 19:21:10 -03:00
const style = {
width: 800,
margin: 20,
2016-07-07 19:21:10 -03:00
};
2016-07-06 18:10:36 -03:00
storiesOf('FindBar', module)
.add('Default View', () => (
2016-07-07 19:21:10 -03:00
<div style={style}>
<FindBar runCommand={action} />
2016-07-07 19:21:10 -03:00
</div>
2016-07-06 18:10:36 -03:00
));