Add Akkam Bakkam classroom game
Some checks failed
CI / validate (push) Has been cancelled

This commit is contained in:
Neeldhara Misra 2026-07-20 17:23:12 +05:30
parent 52615a5086
commit e6fa86519c
16 changed files with 3277 additions and 6 deletions

View file

@ -3,6 +3,7 @@ import type { ComponentType } from "react";
type LazyImport = () => Promise<{ default: ComponentType<any> }>;
export const componentMap: Record<string, LazyImport> = {
"akkam-bakkam": () => import("@/components/interactives/AkkamBakkam"),
"binary-number-game": () => import("@/components/interactives/BinaryNumberGame"),
"ternary-number-game": () => import("@/components/interactives/TernaryNumberGame"),
"balanced-ternary-game": () => import("@/components/interactives/BalancedTernaryGame"),