```js // List.stories.js | List.stories.jsx import React from 'react'; import { List } from './List'; export default { component: List, }; // Always an empty list, not super interesting export const Empty = { render: (args) => , }; ```