mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
16 lines
227 B
Plaintext
16 lines
227 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) => ({
|
|
props: args,
|
|
});
|
|
```
|