reorganize all frontend items

This commit is contained in:
hay-kot 2021-08-01 19:24:47 -08:00
commit 00a8fdda41
147 changed files with 3845 additions and 743 deletions

View file

@ -1,5 +1,6 @@
import axios, { AxiosResponse } from "axios";
interface RequestResponse<T> {
response: AxiosResponse<T> | null;
data: T | null;