```js // List.stories.js import React from 'react'; import List from './List'; import ListItem from './ListItem'; export default { component: List, subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent title: 'List', }; export const Empty = (args) => ; export const OneItem = (args) => ( ); ```