This commit is contained in:
Cássio Zen
2016-07-07 19:21:10 -03:00
parent ebde4f0708
commit 614a161454
3 changed files with 83 additions and 60 deletions

View File

@ -13,10 +13,17 @@ const commands = [
{ pattern: 'Go to Settings' },
];
const style = {
width: 800,
margin: 20
};
storiesOf('FindBar', module)
.add('Default View', () => (
<FindBar
commands={commands}
dispatch={action('DISPATCH')}
/>
<div style={style}>
<FindBar
commands={commands}
dispatch={action('DISPATCH')}
/>
</div>
));