Implement React

This commit is contained in:
Taevas 2023-05-07 19:48:02 +02:00
parent 5ec7cd193e
commit c72d2fbdf8
14 changed files with 787 additions and 57 deletions

View file

@ -1,4 +1,5 @@
// Standard variation
import fetch from "node-fetch"
export async function api<T>(url: string): Promise<T> {
return fetch(url)
.then(response => {