Separated distance calculation and far map renderer into own components

This commit is contained in:
Keannu Christian Bernasol 2023-09-20 19:36:06 +08:00
parent 12e3d29822
commit 790574daee
5 changed files with 116 additions and 75 deletions

View file

@ -130,7 +130,13 @@ export interface LocationType {
}
export interface StudentStatusType {
user?: string;
subject: string;
location: LocationType;
landmark: string | null;
active: boolean;
}
export interface StudentStatusPatchType {
subject?: string;
location?: LocationType;
landmark?: string | null;