import { useAuth } from "@/store/auth"; import type { FC } from "react"; import { Navigate, Outlet } from "react-router"; const AdminLayout: FC = () => { const profile = useAuth((state) => state.profile); if (!profile) {
Loading...

Loading...

; } if (!profile?.is_admin) { return ; } return ; }; export default AdminLayout;