```ts // CSF 3 import type { Meta, StoryObj } from '@storybook/web-components'; const meta: Meta = { title: 'components/Button', component: 'demo-button', }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { primary: true } }; ```