mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
const Template = (args) => <List {...args} />;
|
|
|
|
export const OneItem = Template.bind({});
|
|
OneItem.args = {
|
|
children: <Unchecked {...Unchecked.args} />,
|
|
};
|
|
``` |