```ts // CSF 3 import type { Meta, StoryObj } from '@storybook/react'; import { Button } from './Button'; const meta: Meta = { component: Button }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { primary: true } }; ```