storybook/docs/snippets/react/list-story-with-unchecked-children.ts.mdx
2021-02-23 00:26:03 +00:00

15 lines
324 B
Plaintext

```ts
// List.stories.tsx
import React from 'react';
import { List, ListProps } from './List';
import { Unchecked } from './ListItem.stories';
const Template: Story<ListProps> = (args) => <List {...args} />;
export const OneItem = Template.bind({});
OneItem.args = {
children: <Unchecked {...Unchecked.args} />,
};
```