```js // MyList.stories.js import { html } from 'lit-html'; // 👇 Import the stories of MyListItem import { Unchecked } from './MyListItem.stories'; export default { title: 'MyList', component: 'demo-my-list', }; export const OneItem = { render: () => html` ${Unchecked({ ...Unchecked.args })} `, }; ```