mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
27 lines
517 B
Plaintext
27 lines
517 B
Plaintext
```ts
|
|
// TodoItem.stories.ts
|
|
|
|
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
|
|
import fetch from 'node-fetch';
|
|
|
|
const meta: Meta = {
|
|
title: 'Examples/Loader'
|
|
component: 'demo-todo-item',
|
|
render: (args, { loaded: { todo } }) => TodoItem({...args, ...todo}),
|
|
};
|
|
export default meta;
|
|
|
|
type Story = StoryObj;
|
|
|
|
export const Primary: Story = {
|
|
loaders: [
|
|
async () => ({
|
|
todo: await (
|
|
await fetch('https://jsonplaceholder.typicode.com/todos/1')
|
|
).json(),
|
|
}),
|
|
],
|
|
};
|
|
```
|