```ts //Button.stories.ts import { Button } from './button.component'; export default { component: Button, }; export const Primary = { args: { primary: true, label: 'Button', }, }; ```