Spaces:
Running
Running
File size: 458 Bytes
977221f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import { Navigate, Outlet } from "react-router-dom"
import { useAuthStore } from "@/store/auth"
import Sidebar from "./Sidebar"
export default function AppLayout() {
const { isAuthenticated } = useAuthStore()
if (!isAuthenticated()) return <Navigate to="/login" replace />
return (
<div className="flex min-h-screen">
<Sidebar />
<main className="flex-1 overflow-auto bg-background">
<Outlet />
</main>
</div>
)
}
|