mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
26 lines
407 B
Plaintext
26 lines
407 B
Plaintext
```ts
|
|
// TodoItem.stories.ts
|
|
|
|
import fetch from 'node-fetch';
|
|
|
|
import { TodoItem } from './TodoItem';
|
|
|
|
export default {
|
|
component: TodoItem,
|
|
};
|
|
|
|
export const Primary = {
|
|
render: (args, { loaded: { todo } }) => ({
|
|
props: {
|
|
args,
|
|
todo,
|
|
},
|
|
}),
|
|
loaders: [
|
|
async () => ({
|
|
todo: await (await fetch('https://jsonplaceholder.typicode.com/todos/1')).json(),
|
|
}),
|
|
],
|
|
};
|
|
```
|