diff options
Diffstat (limited to '')
| -rw-r--r-- | frontend/src/api/Games.ts (renamed from frontend/src/api/Games.tsx) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontend/src/api/Games.tsx b/frontend/src/api/Games.ts index 84b5f74..72bb4b3 100644 --- a/frontend/src/api/Games.tsx +++ b/frontend/src/api/Games.ts | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | import axios from "axios"; | 1 | import axios from "axios"; |
| 2 | import { url } from "./Api"; | 2 | import { url } from "@api/Api"; |
| 3 | import { GameChapter, GamesChapters } from "../types/Chapters"; | 3 | import { GameChapter, GamesChapters } from "@customTypes/Chapters"; |
| 4 | import { Game } from "../types/Game"; | 4 | import { Game } from "@customTypes/Game"; |
| 5 | import { Map } from "../types/Map"; | 5 | import { Map } from "@customTypes/Map"; |
| 6 | import { Search } from "../types/Search"; | 6 | import { Search } from "@customTypes/Search"; |
| 7 | 7 | ||
| 8 | export const get_games = async (): Promise<Game[]> => { | 8 | export const get_games = async (): Promise<Game[]> => { |
| 9 | const response = await axios.get(url(`games`)) | 9 | const response = await axios.get(url(`games`)) |