fido-node.github.io/components/atom/Button.stories.tsx
2021-04-28 22:31:42 +03:00

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="😀 😎 👍 💯" />;
});