import { prisma } from "@/prisma/prismaClient"; import CreateGameSystem from "./create"; import { GameSystemsClient } from "./client"; import Link from "next/link"; export default async function GameSystems() { const existingGameSystems = await prisma.gameSystem.findMany({ orderBy: { created: "asc", }, }); return (

Tabletop Commander

Game Systems

); }