mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:01:20 +08:00
19 lines
395 B
Plaintext
19 lines
395 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
import { createList } from './List';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/html/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'List',
|
|
};
|
|
|
|
// Always an empty list, not super interesting
|
|
export const Empty = {
|
|
render: (args) => createList(args),
|
|
};
|
|
```
|