```ts // List.stories.tsx import React from 'react'; import { Story, Meta } from '@storybook/react'; import { List, ListProps } from './List'; import { ListItem, ListItemProps } from './ListItem'; export default { component: List, subcomponents: { ListItem }, title: 'List', } as Meta; export const Empty = Story = (args) => ;; export const OneItem = (args) => ( ); ```