storybook/docs/snippets/react/list-story-starter.js.mdx
2020-10-07 12:23:34 +08:00

15 lines
236 B
Plaintext

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