1
0
Fork 0

Tab Selector for different Data Visualisations

This commit is contained in:
Neshura 2023-06-10 23:43:09 +02:00
parent f23c9dc0f1
commit 6130b331e6
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
6 changed files with 99 additions and 6 deletions
components/gui/data-handlers

View file

@ -0,0 +1,17 @@
import { fetchGameGroups } from "@/components/server/fetchers";
import { Game, GameGroup } from "@/types/stellaris";
import { Dispatch, SetStateAction } from "react";
export const GameInfoHandler = async (
props: {
game: Game,
groups: GameGroup[]
}) => {
if (props) {
const currentGame = props.game;
const currentGroups = props.groups;
}
return <></>
}