mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
17 lines
248 B
Plaintext
17 lines
248 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import List from './list.component';
|
|
|
|
export default {
|
|
title: 'List',
|
|
component: List,
|
|
};
|
|
|
|
// Always an empty list, not super interesting
|
|
const Template = (args: List) => ({
|
|
component: List,
|
|
props: args,
|
|
});
|
|
|
|
``` |