mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
29 lines
649 B
Plaintext
29 lines
649 B
Plaintext
```js
|
|
// TodoItem.stories.js|jsx|ts|tsx
|
|
|
|
import React from 'react';
|
|
|
|
import fetch from 'node-fetch';
|
|
|
|
import { TodoItem } from './TodoItem';
|
|
|
|
export default {
|
|
/* 👇 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: 'Examples/Loader'
|
|
component: TodoItem,
|
|
render: (args, { loaded: { todo } }) => <TodoItem {...args} {...todo} />,
|
|
};
|
|
|
|
export const Primary = {
|
|
loaders: [
|
|
async () => ({
|
|
todo: await (
|
|
await fetch('https://jsonplaceholder.typicode.com/todos/1')
|
|
).json(),
|
|
}),
|
|
],
|
|
};
|
|
``` |