```js // CSF 2 import { html } from 'lit-html'; export default { title: 'components/Button', component: 'demo-button', }; export const Primary = ({ primary }) => html``; Primary.args = { primary: true, }; ```