Skip to content

Commit

Permalink
Feat(#23): Create page components
Browse files Browse the repository at this point in the history
  • Loading branch information
SverreNystad committed Jan 4, 2024
1 parent 041058b commit 8cf50ad
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions frontend/src/pages/Login.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const Login = () => {
return (
<div>
<h1>This is the login page</h1>
</div>
);
};

export default Login;
9 changes: 9 additions & 0 deletions frontend/src/pages/Signup.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const Signup = () => {
return (
<div>
<h1>This is the Signup page</h1>
</div>
);
};

export default Signup;

0 comments on commit 8cf50ad

Please sign in to comment.