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) 343 B
import type { Meta, StoryObj } from '@storybook/react'; import { type ButtonProps } from './Button'; declare const meta: Meta<ButtonProps>; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story; export declare const Secondary: Story; export declare const Large: Story; export declare const Small: Story;