storybook/docs/snippets/react/list-story-with-unchecked-children.js.mdx
2020-08-14 21:46:15 +01:00

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} />,
};
```