```js // List.stories.js|jsx import { List } from './List'; //👇 Instead of importing ListItem, we import the stories import { Unchecked } from './ListItem.stories'; export default { /* 👇 The title prop is optional. * See https://storybook.js.org/docs/configure/#configure-story-loading * to learn how to generate automatic titles */ title: 'List', component: List, }; export const OneItem = { args: { children: , }, }; ```