2021-06-22 02:15:40 +02:00
|
|
|
import React, {useState, useEffect} from "react";
|
2021-06-22 00:58:08 +02:00
|
|
|
import "../../App.css";
|
|
|
|
import Footer from "../../Footer";
|
|
|
|
|
|
|
|
export default function Manual() {
|
2021-06-22 02:15:40 +02:00
|
|
|
const [currentTime, setCurrentTime] = useState(0);
|
|
|
|
|
2021-06-22 00:58:08 +02:00
|
|
|
return (
|
|
|
|
<>
|
2021-06-23 01:56:27 +02:00
|
|
|
<div className="sitePage">
|
|
|
|
<h1> Anleitung / Bedienungshinweise</h1>
|
|
|
|
</div>
|
2021-06-22 00:58:08 +02:00
|
|
|
<Footer />
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|