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