UNPKG

@fatherly-funnies/joke-card

Version:

React component to display a daily joke

16 lines (15 loc) 378 B
import type { StoryObj } from '@storybook/react'; import JokeCard from '../components/JokeCard'; declare const meta: { title: string; component: typeof JokeCard; parameters: { layout: string; controls: { expanded: boolean; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story;