diff --git a/frontend/src/routes/login/login.tsx b/frontend/src/routes/login/login.tsx new file mode 100644 index 0000000..0009369 --- /dev/null +++ b/frontend/src/routes/login/login.tsx @@ -0,0 +1,3 @@ +export default function LoginView() { + return

login

; +} diff --git a/frontend/src/routes/router.tsx b/frontend/src/routes/router.tsx index 4fc4e47..b4c9f2e 100644 --- a/frontend/src/routes/router.tsx +++ b/frontend/src/routes/router.tsx @@ -1,4 +1,5 @@ import { Routes, Route } from 'react-router-dom'; +import LoginView from './login/login'; import ProcessingView from './processing/processing'; import UploadView from './upload/upload'; import ViewView from './view/view'; @@ -7,6 +8,7 @@ export default function AppRouter() { return ( } /> + } /> } /> } />