storybook/docs/snippets/react/list-story-starter.ts.mdx
2020-10-07 12:23:34 +08:00

16 lines
337 B
Plaintext

```ts
// List.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react/types-6-0';
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} />;
```