```js // Button.stories.js import Button from './Button.svelte'; export default { component: Button, }; export const Primary = { args: { primary: true, label: 'Button', }, render: (args) => ({ Component: Button, props: args, }), }; ```