mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
address feedback
This commit is contained in:
parent
5715718e88
commit
e673030782
@ -5,7 +5,7 @@ import fetch from 'node-fetch';
|
||||
|
||||
export const loaders = [
|
||||
async () => ({
|
||||
currentUser: await (await fetch('https://jsonplaceholder.typicode.com/todos/1')).json(),
|
||||
currentUser: await (await fetch('https://jsonplaceholder.typicode.com/users/1')).json(),
|
||||
}),
|
||||
];
|
||||
```
|
@ -15,7 +15,7 @@ export const Primary = (args, { loaded: { todo } }) => ({
|
||||
props: { ...args, ...todo },
|
||||
});
|
||||
|
||||
Primaryloaders = [
|
||||
Primary.loaders = [
|
||||
async () => ({
|
||||
todo: await (await fetch('https://jsonplaceholder.typicode.com/todos/1')).json(),
|
||||
}),
|
||||
|
@ -20,7 +20,7 @@ export const Primary = (args, { loaded: { todo } }) => {
|
||||
};
|
||||
};
|
||||
|
||||
SampleStory.loaders = [
|
||||
Primary.loaders = [
|
||||
async () => ({
|
||||
todo: await (await fetch('https://jsonplaceholder.typicode.com/todos/1')).json(),
|
||||
}),
|
||||
|
@ -31,7 +31,7 @@ Loaders are helpful when you need to load story data externally (e.g., from a re
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
The response obtained from the remote API call is combined into a `loaded` field on the story context, which is the second argument to a story function. For example, in React, the story's args were spread first to prioritize them over the static data provided by the loader. Other frameworks will not need such requisite.
|
||||
The response obtained from the remote API call is combined into a `loaded` field on the story context, which is the second argument to a story function. For example, in React, the story's args were spread first to prioritize them over the static data provided by the loader. With other frameworks (e.g., Angular), you can write your stories as you'd usually do.
|
||||
|
||||
## Global loaders
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user