2016-07-06 18:10:36 -03:00
|
|
|
import React from 'react';
|
2016-07-06 18:41:57 -03:00
|
|
|
import { storiesOf, action } from '@kadira/storybook';
|
2016-07-06 18:10:36 -03:00
|
|
|
|
2016-09-27 12:57:41 +02: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,
|
2016-10-18 12:32:39 -02:00
|
|
|
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}>
|
2017-03-15 14:32:41 -04:00
|
|
|
<FindBar runCommand={action} />
|
2016-07-07 19:21:10 -03:00
|
|
|
</div>
|
2016-07-06 18:10:36 -03:00
|
|
|
));
|