mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
"use client";
|
|
|
|
export default function CreateGamePage() {
|
|
return (
|
|
<div className="absolute flex items-center justify-center top-0 left-0 w-screen h-screen">
|
|
<p>Game creation coming soon</p>
|
|
</div>
|
|
);
|
|
}
|