Skip to content

Instantly share code, notes, and snippets.

@trinwin
Last active August 2, 2020 06:35
Show Gist options
  • Save trinwin/16ef98d953faa78980d6107431ba19f4 to your computer and use it in GitHub Desktop.
Save trinwin/16ef98d953faa78980d6107431ba19f4 to your computer and use it in GitHub Desktop.
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="😀 😎 👍 💯" />;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment