storybook/docs/snippets/html/list-story-starter.js.mdx

13 lines
199 B
Plaintext

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