mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:41:07 +08:00
23 lines
522 B
Plaintext
23 lines
522 B
Plaintext
```tsx
|
|
// List.stories.ts|tsx
|
|
|
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
|
|
import { List } from './List';
|
|
|
|
const meta: Meta<typeof List> = {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'List',
|
|
component: List,
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof List>;
|
|
|
|
//👇 Always an empty list, not super interesting
|
|
export const Empty: Story = {};
|
|
```
|