storybook/docs/snippets/react/list-story-starter.js.mdx
2020-08-07 17:05:17 +01:00

13 lines
207 B
Plaintext

```js
// List.stories.js
import List from './List'
export default {
component: List,
title: 'List',
};
// Always an empty list, not super interesting
const Template = (args) => <List {...args} />;
```