Rename id to path to be a bit more general

This commit is contained in:
Tom Coleman 2020-02-03 23:11:35 +11:00
parent 0a65a5a01c
commit c15feb6b0d

View File

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