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

13 lines
195 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 (
<>
2021-06-22 22:11:04 +00:00
<h1>Privacy</h1>
2021-06-07 03:03:18 +00:00
<Footer />
</>
);
2021-06-21 01:45:22 +00:00
}