fido-node.github.io/components/Button.stories.tsx
2021-04-28 10:16:22 +03:00

10 lines
285 B
TypeScript

import { storiesOf } from "@storybook/react";
import Button from "./Button";
storiesOf("Button", module).add("with text", () => {
return <Button text="Hello World" />;
});
storiesOf("Button", module).add("with emoji", () => {
return <Button text="😀 😎 👍 💯" />;
});