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