import React from 'react'; import { Navigate, useLocation } from 'react-router-dom'; import { useAuthStore } from '@/store/authStore'; export function ProtectedRoute({ children }: { children: React.ReactNode }) { const { isAuthenticated } = useAuthStore(); const location = useLocation(); if (!isAuthenticated) { return ; } return <>{children}; }