'use client' import { UserRole } from '@prisma/client' import { useCurrentRole } from '@/hooks/useCurrentRole' import FormError from '@/components/form-error' interface RoleGateProps { children: React.ReactNode allowedRole: UserRole } export const RoleGate = ({ children, allowedRole, }: RoleGateProps) => { const role = useCurrentRole() if (role !== allowedRole) { return } return <>{children} }