```js // List.stories.js import List from './ListComponent.vue'; import ListItem from './ListItem.vue'; //👇 We're importing the necessary stories from ListItem import { Selected, Unselected } from './ListItem.stories'; export default { component: List, }; /* *👇 Render functions are a framework specific feature to allow you control on how the component renders. * See https://storybook.js.org/docs/api/csf * to learn how to use render functions. */ export const ManyItems = { render: (args) => ({ components: { List, ListItem }, setup() { return { ...args }; }, template: ` `, }), args: { Selected: Selected.args.isSelected, Unselected: Unselected.args.isSelected, }, }; ```