@@ -9,6 +9,7 @@ import ResetPasswordPage from './ui/page/account/resetPassword/ResetPasswordPage
|
||||
import { HomePage } from './ui/page/home/HomePage';
|
||||
import type { AuthData } from './data/AuthData';
|
||||
import { useEffect } from 'react';
|
||||
import { ScheduleMainPage } from './ui/page/schedule/ScheduleMainPage';
|
||||
|
||||
function App() {
|
||||
const { authData, login } = useAuthStore();
|
||||
@@ -38,6 +39,7 @@ function App() {
|
||||
: <>
|
||||
<Route element={<Navigate to={PageRouting["HOME"].path} />} path="*" />
|
||||
<Route element={<HomePage />} path={PageRouting["HOME"].path} />
|
||||
<Route element={<ScheduleMainPage />} path={PageRouting["SCHEDULES"].path} />
|
||||
</>
|
||||
}
|
||||
</Route>
|
||||
|
||||
@@ -120,7 +120,10 @@
|
||||
}
|
||||
|
||||
html, body, #root {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-width: 1280px;
|
||||
min-height: 720px;
|
||||
}
|
||||
|
||||
/* Chrome, Safari, Edge */
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
export const HomePage = () => {
|
||||
return (
|
||||
<div>
|
||||
<div className="w-full h-full flex flex-column">
|
||||
HomePage
|
||||
</div>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user