mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
13 lines
234 B
Plaintext
13 lines
234 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
import React from 'react';
|
|
|
|
import fetch from 'node-fetch';
|
|
|
|
export const loaders = [
|
|
async () => ({
|
|
currentUser: (await fetch('https://jsonplaceholder.typicode.com/users/1')).json(),
|
|
}),
|
|
];
|
|
``` |