import { Navigate } from 'react-router'; import { useAuth } from '../../shared/auth'; export function PendingPage() { const { user, loading, logout } = useAuth(); if (loading) { return (
); } if (!user) { return ; } if (user.status !== 'PENDING') { return ; } return (
승인 대기 중
{user.email} 계정이 등록되었습니다.
관리자가 승인하면 대시보드에 접근할 수 있습니다.
); }