```ts // Button.stories.ts import { Button } from './button.component'; export default { component: Button, }; export const Primary = { render: () => ({ props: { label: 'Button', primary: true, }, }), }; Primary.storyName = 'I am the primary'; ```