mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:01:05 +08:00
15 lines
348 B
Plaintext
15 lines
348 B
Plaintext
```js
|
|
// TodoItem.stories.js
|
|
|
|
import React from 'react';
|
|
import fetch from 'node-fetch';
|
|
import { TodoItem } from './TodoItem';
|
|
|
|
export const Primary = (args, { loaded: { todo } }) => <TodoItem {...args} {...todo} />;
|
|
Primary.loaders = [
|
|
async () => ({
|
|
todo: (await fetch('https://jsonplaceholder.typicode.com/todos/1')).json(),
|
|
}),
|
|
];
|
|
```
|