storybook/docs/snippets/html/list-story-starter.ts.mdx
2022-07-07 22:27:00 +01:00

20 lines
486 B
Plaintext

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