storybook/docs/snippets/html/list-story-starter.ts.mdx

15 lines
296 B
Plaintext

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