mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
11 lines
206 B
Plaintext
11 lines
206 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
import fetch from 'node-fetch';
|
|
|
|
export const loaders = [
|
|
async () => ({
|
|
currentUser: (await fetch('https://jsonplaceholder.typicode.com/users/1')).json(),
|
|
}),
|
|
];
|
|
``` |