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

12 lines
214 B
JavaScript
Raw Normal View History

2021-06-07 03:03:18 +00:00
import React from "react";
import "../../App.css";
import Footer from "../../Footer";
export default function SignUp() {
return (
<>
<h1 className="sign-up">SIGN UP</h1>
<Footer />
</>
);
}