1
0
Fork 0
This repository has been archived on 2023-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
chellaris-galaxy-political-.../app/admin/page.tsx

14 lines
221 B
TypeScript

'use client';
import '@/app/globals.css';
import Link from 'next/link';
export default function Home() {
return (
<main>
<div>
<p>Admin Menu goes here at some point</p>
</div>
</main>
)
}