UNPKG

jc-custom-components

Version:

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

10 lines (9 loc) 345 B
import { Meta, StoryObj } from "@storybook/react"; import { type Props } from "../components/MyLabel"; declare const meta: Meta<Props>; export default meta; type Story = StoryObj<typeof meta>; export declare const Basic: Story; export declare const AllCaps: Story; export declare const Secondary: Story; export declare const CustomColor: Story;