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