storybook/docs/snippets/react/list-story-with-unchecked-children.js.mdx
2020-08-10 19:23:38 +01:00

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