11 lines
No EOL
264 B
TypeScript
11 lines
No EOL
264 B
TypeScript
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>
|
|
)
|
|
} |