aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Maplist.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/Maplist.tsx')
-rw-r--r--frontend/src/pages/Maplist.tsx9
1 files changed, 4 insertions, 5 deletions
diff --git a/frontend/src/pages/Maplist.tsx b/frontend/src/pages/Maplist.tsx
index 4c1c172..8fc52b0 100644
--- a/frontend/src/pages/Maplist.tsx
+++ b/frontend/src/pages/Maplist.tsx
@@ -1,11 +1,10 @@
1import React, { useEffect } from "react"; 1import React, { useEffect } from "react";
2import { Link, useLocation, useNavigate, useParams } from "react-router-dom"; 2import { Link, useLocation, useNavigate, useParams } from "react-router-dom";
3 3
4import "../css/Maplist.css"; 4import "@css/Maplist.css";
5import { API } from "../api/Api"; 5import { API } from "@api/Api";
6import { Game, GameChapters } from "../types/Game"; 6import { Game } from "@customTypes/Game";
7import { GameChapter, GamesChapters } from "../types/Chapters"; 7import { GameChapter, GamesChapters } from "@customTypes/Chapters";
8import { Map } from "../types/Map";
9 8
10const Maplist: React.FC = () => { 9const Maplist: React.FC = () => {
11 const [game, setGame] = React.useState<Game | null>(null); 10 const [game, setGame] = React.useState<Game | null>(null);