import { Route, Routes, Navigate } from "react-router-dom"; import AuthLayout from "../layouts/AuthLayout.jsx"; import LoginForm from "../components/LoginForm.jsx"; import RegisterPage from "../pages/auth/RegisterPage.jsx"; export default function AuthRoutes() { return( {/* 1. Root Path ('/') นำทางไปยัง /login ทันที */} } /> {/* 2. AuthLayout สำหรับหน้า Login, Register, Forgot Password */} }> }/> }/> หน้าลืมรหัสผ่าน}/> {/* 3. Fallback สำหรับเส้นทางที่ไม่รู้จักในส่วน Public */} 404 Not Found}/> ); }