UNPKG

create-exam-project

Version:

Create exam projects with React + Express + PostgreSQL in seconds

13 lines (9 loc) 309 B
import { Navigate } from 'react-router-dom' import { useAuth } from '../contexts/AuthContext' export default function HomeRedirect() { const { user } = useAuth() if (user?.role === 'admin') { return <Navigate to="/admin/dashboard" replace /> } return <Navigate to="/dashboard" replace /> }