Bachelorthesis_Code/frontend/src/components/pages/Privacy.js
2021-06-21 03:45:22 +02:00

13 lines
215 B
JavaScript

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