mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
10 lines
186 B
Plaintext
10 lines
186 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
const Template = (args) => <List {...args} />;
|
|
|
|
export const OneItem = Template.bind({});
|
|
OneItem.args = {
|
|
children: <Unchecked {...Unchecked.args} />,
|
|
};
|
|
``` |