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...