storybook/docs/snippets/react/list-story-starter.ts.mdx
Norbert de Langen 84a4bde3f0
FIX
2020-12-09 14:42:24 +01:00

16 lines
327 B
Plaintext

```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} />;
```