1
0
Fork 0

Use of Server Components for easier Data fetching + start use of v2 API

This commit is contained in:
Neshura 2023-06-10 16:14:53 +02:00
parent 49ceda5575
commit f23c9dc0f1
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
6 changed files with 195 additions and 5 deletions

View file

@ -64,3 +64,14 @@ export enum Species {
Toxoid = 11,
Machine = 12,
}
export type Game = {
id: number,
name: string
}
export type GameGroup = {
id: number,
game_id: number,
name: string
}