```ts // List.stories.ts | List.stories.tsx import React from 'react'; import { List, ListProps } from './List'; //👇 Instead of importing ListItem, we import the stories import { Unchecked } from './ListItem.stories'; const Template: Story = (args) => ; export const OneItem = Template.bind({}); OneItem.args = { children: , }; ```