```js // List.stories.js import { createList } from './List'; export default { title: 'List', }; // Always an empty list, not super interesting const Template = (args) => createList(args); ```