storybook/docs/snippets/react/list-story-with-unchecked-children.js.mdx
2021-09-03 23:31:04 +01:00

20 lines
413 B
Plaintext

```js
// List.stories.js | List.stories.jsx
import React from 'react';
import { List } from './List';
//👇 Instead of importing ListItem, we import the stories
import { Unchecked } from './ListItem.stories';
export default {
component: List,
};
const Template = (args) => <List {...args} />;
export const OneItem = Template.bind({});
OneItem.args = {
children: <Unchecked {...Unchecked.args} />,
};
```