mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
17 lines
262 B
Plaintext
17 lines
262 B
Plaintext
```js
|
|
// List.stories.js | List.stories.jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { List } from './List';
|
|
|
|
export default {
|
|
component: List,
|
|
};
|
|
|
|
// Always an empty list, not super interesting
|
|
export const Empty = {
|
|
render: (args) => <List {...args} />,
|
|
};
|
|
```
|