```js // List.stories.js import List from './List.vue'; import ListItem from './ListItem.vue'; import { Unchecked } from './ListItem.stories'; const ListTemplate = (args, { argTypes }) => ({ props: Object.keys(argTypes), components: { List, ListItem }, template: `
`, }); export const Empty = ListTemplate.bind({}); EmptyListTemplate.args = { items: [], }; export const OneItem = ListTemplate.bind({}); OneItem.args = { items: [ { ...Unchecked.args, }, ], }; ```