```js
// demo-button.stories.js
import { html } from 'lit-html';
import './demo-button';
//π We create a βtemplateβ of how args map to rendering
const Template = ({ background, label }) =>
html``;
//π Each story then reuses that template
export const Primary = Template.bind({});
Primary.args = { background: '#ff0', label: 'Button' };
export const Secondary = Template.bind({});
Secondary.args = { ...Primary.args, label: 'ππππ―' };
export const Tertiary = Template.bind({});
Tertiary.args = { ...Primary.args, label: 'ππππ€' };
```