import { PlayerChangableChunithmGameVersionSelection } from "./gameSelection"; import { getGameList } from "./actions"; import { Card, CardHeader, CardTitle } from "@/components/ui/card"; const getAllGamesChunithm = async () => { const gameVersions = await getGameList(); return { gameVersions }; }; const Versions = async () => { const AllChunithmVersions = await getAllGamesChunithm(); return ( Update Game Versions ); }; export default Versions;