storybook/docs/snippets/react/list-story-starter.js.mdx
2020-08-14 21:46:15 +01: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} />;
```