Study/src/app/(protected)/[classSlug]/arcade/layout.tsx
Elijah 611a585757
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m4s
Initial addition of the Arcade study feature. Add connections as the first working game.
2026-07-13 17:35:18 -07:00

3 lines
143 B
TypeScript

export default function ArcadeLayout({ children }: { children: React.ReactNode }) {
return <div className="arcade-route">{children}</div>;
}