markers and groups added

This commit is contained in:
Owen Rees
2023-06-05 16:26:17 +02:00
parent 1407125ba5
commit b28510b63d
29 changed files with 135 additions and 27 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
export interface Tournament {
_id: string;
location: string;
town: string;
department: string;
tournament: string;
url: string;
@@ -9,6 +9,6 @@ export interface Tournament {
coordinates: [number, number];
}
export interface TournamentTableProps {
export interface TournamentDataProps {
tournamentData: Tournament[];
}