import { ConnectionsGame } from "@/components/arcade/ConnectionsGame"; import { CrosswordGame } from "@/components/arcade/CrosswordGame"; export const ARCADE_RENDERERS = { connections: ConnectionsGame, crossword: CrosswordGame, } as const;