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