#13 Made login page form

This commit is contained in:
2023-03-18 20:33:00 -04:00
parent 1caa16c582
commit d6bb030b5c
5 changed files with 70 additions and 42 deletions

View File

@@ -1,7 +1,15 @@
import { Container } from "react-bootstrap";
import MyNavbar from "../components/MyNavbar";
const HomePage = () => {
return (
<div>
<h1>This is the home page</h1>
<MyNavbar />
<Container>
<div>
<h1>This is the home page</h1>
</div>
</Container>
</div>
);
};