```ts // List.stories.ts import { Meta, StoryFn } from '@storybook/html'; import { createList, ListArgs } from './List'; export default { title: 'List', } as Meta; // Always an empty list, not super interesting const Template: StoryFn = (args) => createList(args); ```