```ts // Button.stories.ts import { Button } from './button.component'; export default { component: Button, //👇 Creates specific argTypes argTypes: { backgroundColor: { control: 'color' }, }, args: { //👇 Now all Button stories will be primary. primary: true, }, }; ```