```js // List.stories.js import { List, ListProps } from './List'; import { ListItem, ListItemProps } from './ListItem'; export default { component: List, subcomponents: [ListItem], title: 'List', }; export const Empty = Story = (args) => ;; export const OneItem = (args) => ( ); ```