storybook/docs/snippets/react/list-story-starter.ts.mdx
2021-06-28 23:00:33 +01:00

17 lines
350 B
Plaintext

```ts
// List.stories.ts | List.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react';
import { List, ListProps } from './List';
export default {
component: List,
title: 'List',
} as Meta;
//👇 Always an empty list, not super interesting
const Template : Story<ListProps> = (args) => <List {...args} />;
```