11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
|
|
import type { PropsWithChildren } from 'react'
|
||
|
|
|
||
|
|
export const AdminDefaultLayout = (properties: PropsWithChildren) => {
|
||
|
|
const { children } = properties
|
||
|
|
return (
|
||
|
|
<main className="font-admin relative min-h-dvh bg-[#F7F8FC]">
|
||
|
|
{children}
|
||
|
|
</main>
|
||
|
|
)
|
||
|
|
}
|