From e67303078293cbe21ac58e3fca75f7037bfced95 Mon Sep 17 00:00:00 2001 From: jonniebigodes Date: Mon, 5 Jul 2021 19:19:35 +0100 Subject: [PATCH] address feedback --- docs/snippets/common/storybook-preview-global-loader.js.mdx | 2 +- docs/snippets/svelte/loader-story.js.mdx | 2 +- docs/snippets/vue/loader-story.3.js.mdx | 2 +- docs/writing-stories/loaders.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/snippets/common/storybook-preview-global-loader.js.mdx b/docs/snippets/common/storybook-preview-global-loader.js.mdx index 2e0fe239805..2b7d8f057d4 100644 --- a/docs/snippets/common/storybook-preview-global-loader.js.mdx +++ b/docs/snippets/common/storybook-preview-global-loader.js.mdx @@ -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(), }), ]; ``` \ No newline at end of file diff --git a/docs/snippets/svelte/loader-story.js.mdx b/docs/snippets/svelte/loader-story.js.mdx index 87977a4c083..7fc57ea8be6 100644 --- a/docs/snippets/svelte/loader-story.js.mdx +++ b/docs/snippets/svelte/loader-story.js.mdx @@ -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(), }), diff --git a/docs/snippets/vue/loader-story.3.js.mdx b/docs/snippets/vue/loader-story.3.js.mdx index f8a7739a6ec..fd8c0930851 100644 --- a/docs/snippets/vue/loader-story.3.js.mdx +++ b/docs/snippets/vue/loader-story.3.js.mdx @@ -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(), }), diff --git a/docs/writing-stories/loaders.md b/docs/writing-stories/loaders.md index 6dd9c9e5e2e..c84de903cad 100644 --- a/docs/writing-stories/loaders.md +++ b/docs/writing-stories/loaders.md @@ -31,7 +31,7 @@ Loaders are helpful when you need to load story data externally (e.g., from a re -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