storybook/docs/snippets/html/list-story-starter.js.mdx
2022-11-17 16:33:22 +01:00

19 lines
395 B
Plaintext

```js
// List.stories.js
import { createList } from './List';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/html/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'List',
};
// Always an empty list, not super interesting
export const Empty = {
render: (args) => createList(args),
};
```