diff --git a/src/App.tsx b/src/App.tsx index 3a0742f..c8e841e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -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() { : <> } path="*" /> } path={PageRouting["HOME"].path} /> + } path={PageRouting["SCHEDULES"].path} /> } diff --git a/src/index.css b/src/index.css index c913384..7cdd06f 100644 --- a/src/index.css +++ b/src/index.css @@ -120,7 +120,10 @@ } html, body, #root { - height: 100%; + width: 100%; + height: 100%; + min-width: 1280px; + min-height: 720px; } /* Chrome, Safari, Edge */ diff --git a/src/ui/page/home/HomePage.tsx b/src/ui/page/home/HomePage.tsx index 96cd619..51c0a4d 100644 --- a/src/ui/page/home/HomePage.tsx +++ b/src/ui/page/home/HomePage.tsx @@ -1,6 +1,6 @@ export const HomePage = () => { return ( -
+
HomePage
)