Files
stock-manager/src/app/(dashboard)/people/layout.tsx
T

14 lines
234 B
TypeScript

import type { ReactNode } from "react"
import { requireRole } from "@/services/auth.service"
export default async function PeopleLayout({
children,
}: {
children: ReactNode
}) {
await requireRole("ADMIN")
return children
}