added admin login page

This commit was merged in pull request #8.
This commit is contained in:
victorAnumudu
2024-03-13 15:43:16 +01:00
parent fb8438938a
commit 59c2d55b77
8 changed files with 126 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
import Login from '../components/Login/Login'
export default function LoginPage() {
return (
<>
<Login />
</>
)
}
+2 -1
View File
@@ -1,3 +1,4 @@
import HomePage from "./HomePage";
import LoginPage from "./LoginPage";
export {HomePage}
export {HomePage, LoginPage}