add boilerplate screens

This commit is contained in:
afazio1
2024-03-24 17:21:13 -04:00
parent 57e2da94ff
commit f6202bfb79
4 changed files with 40 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
export default function Login() {
return (
<div>
<h1>Login</h1>
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function Signup() {
return (
<div>
<h1>Signup</h1>
</div>
);
}