Bachelorthesis_Code/frontend/src/components/pages/Privacy.js

12 lines
214 B
JavaScript

import React from "react";
import "../../App.css";
import Footer from "../../Footer";
export default function SignUp() {
return (
<>
<h1 className="sign-up">SIGN UP</h1>
<Footer />
</>
);
}