ADD: added APP-6 Symbols to the Map

This commit is contained in:
hwinkel
2023-09-05 18:46:34 +02:00
parent 6d2a1d7556
commit 658830bab6
221 changed files with 73498 additions and 21 deletions

View File

@@ -0,0 +1,10 @@
import React from "react";
import "./header.scss";
const Header = () => (
<div className="header">
<h2>Cloud Simulator</h2>
</div>
);
export default Header;

View File

@@ -0,0 +1,10 @@
.header
{
background-color: #282c34;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
}

View File

@@ -0,0 +1,3 @@
import Header from "./header.jsx";
export default Header;