All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m41s
7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
import { ConnectionsGame } from "@/components/arcade/ConnectionsGame";
|
|
import { CrosswordGame } from "@/components/arcade/CrosswordGame";
|
|
|
|
export const ARCADE_RENDERERS = {
|
|
connections: ConnectionsGame,
|
|
crossword: CrosswordGame,
|
|
} as const;
|