Skip to content

Commit

Permalink
CHE-39 Added placeholder RegistrationPage component
Browse files Browse the repository at this point in the history
  • Loading branch information
brok3turtl3 committed Mar 27, 2024
1 parent 2748eb2 commit cecb9e5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions client/src/pages/RegistrationPage/RegistrationPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";

const RegistrationPage: React.FC = () => {
return (
<div className="min-h-screen bg-gray-100 flex flex-col items-center justify-center">
<h1 className="text-4xl font-extrabold mb-4">Main Page</h1>
<h1>Registration Form Goes Here!</h1>
</div>
);
};

export default RegistrationPage;

0 comments on commit cecb9e5

Please sign in to comment.