```js
// demo-button.stories.js
import { html } from 'lit-html';
import './demo-button';
export default {
title: 'Button',
//👇 Creates specific argTypes
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
//👇 Now all Button stories will be primary.
primary: true,
},
};
export const Primary = ({ primary }) => html``;
```