mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
15 lines
296 B
Plaintext
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);
|
|
```
|