Added more routes, and CV!
This commit is contained in:
parent
767ff685b1
commit
bb4d8f2004
12 changed files with 83 additions and 0 deletions
11
app/Admin/layout.tsx
Normal file
11
app/Admin/layout.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import React from "react";
|
||||
|
||||
export default function AdminLayout({children}: {children: React.ReactNode}) {
|
||||
// TODO: Put user state management here
|
||||
//redirect("wherever state says") <= stateRouteManager()
|
||||
return (
|
||||
<div>
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue