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

15 lines
248 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 Privacy() {
2021-06-07 03:03:18 +00:00
return (
<>
<div className="sitePage">
<h1>Datenschutz</h1>
</div>
2021-06-07 03:03:18 +00:00
<Footer />
</>
);
2021-06-21 01:45:22 +00:00
}