Skip to content

Instantly share code, notes, and snippets.

@Sanchithasharma
Last active October 28, 2022 12:11
Show Gist options
  • Save Sanchithasharma/63a154c82b8fb155bfc907a21b9a7abf to your computer and use it in GitHub Desktop.
Save Sanchithasharma/63a154c82b8fb155bfc907a21b9a7abf to your computer and use it in GitHub Desktop.
Basic story for the button component
import TextButton from "./TextButton"
import { ComponentMeta, ComponentStory} from "@storybook/react"
export default {
title: "Components/Button",
component: TextButton,
} as ComponentMeta<typeof TextButton>
export const Submit = () => <TextButton label="Submit"/>
export const Check = () => <TextButton label="Check"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment