Improved API, added loading page, initial changes to homepage, and fixed irregular field on user info page not being centered

This commit is contained in:
Keannu Christian Bernasol 2023-08-06 14:25:09 +08:00
parent 16f3cda10d
commit 029ef84671
9 changed files with 188 additions and 82 deletions

View file

@ -138,3 +138,13 @@ export interface StudentData {
}
export type UserInfoParams = [boolean, StudentData];
interface Location {
latitude: number;
longtitude: number;
}
export interface StudentStatusParams {
subject: string;
location: Location;
}