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