UNPKG

react-scripts-ts-tw

Version:

Configuration and scripts for Create React App.

7 lines 177 B
export const fetchJson = (url, option) => fetch(url, option) .then(response => { if (response.status < 400) { return response.json(); } throw response; });