address feedback

This commit is contained in:
jonniebigodes 2021-07-05 19:19:35 +01:00
parent 5715718e88
commit e673030782
4 changed files with 4 additions and 4 deletions

View File

@ -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(),
}),
];
```

View File

@ -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(),
}),

View File

@ -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(),
}),

View File

@ -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