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

15 lines
267 B
JavaScript
Raw Normal View History

import React from "react";
2021-06-21 22:58:08 +00:00
import "../../App.css";
import Footer from "../../Footer";
export default function Manual() {
return (
<>
<div className="sitePage">
<h1> Anleitung / Bedienungshinweise</h1>
</div>
2021-06-21 22:58:08 +00:00
<Footer />
</>
);
}