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 <> }