mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
16 lines
327 B
Plaintext
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} />;
|
|
|
|
``` |