```js // List.stories.js import React from 'react'; import List from './List'; import ListItem from './ListItem'; export default { component: List, title: 'List', }; export const Empty = (args) => ; export const OneItem = (args) => ( ); export const ManyItems = (args) => ( ); ```