mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
13 lines
199 B
Plaintext
13 lines
199 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
import { createList } from './List';
|
|
|
|
export default {
|
|
title: 'List',
|
|
};
|
|
|
|
// Always an empty list, not super interesting
|
|
const Template = (args) => createList(args);
|
|
```
|