11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
|
import { storiesOf } from '@storybook/react';
|
||
|
import Button from './Button';
|
||
|
|
||
|
storiesOf('Design System/Atoms/Button', module).add('with text', () => {
|
||
|
return <Button text="Hello World" />;
|
||
|
});
|
||
|
|
||
|
storiesOf('Design System/Atoms/Button', module).add('with emoji', () => {
|
||
|
return <Button text="😀 😎 👍 💯" />;
|
||
|
});
|