mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
Rename id
to path
to be a bit more general
This commit is contained in:
parent
0a65a5a01c
commit
c15feb6b0d
@ -4,8 +4,8 @@ import { RenderMainArgs, FetchStoryHtmlType } from './types';
|
||||
|
||||
const rootElement = document.getElementById('root');
|
||||
|
||||
let fetchStoryHtml: FetchStoryHtmlType = async (url, id, params) => {
|
||||
const fetchUrl = new URL(`${url}/${id}`);
|
||||
let fetchStoryHtml: FetchStoryHtmlType = async (url, path, params) => {
|
||||
const fetchUrl = new URL(`${url}/${path}`);
|
||||
fetchUrl.search = new URLSearchParams(params).toString();
|
||||
|
||||
const response = await fetch(fetchUrl);
|
||||
|
Loading…
x
Reference in New Issue
Block a user