initial commit

This commit is contained in:
hwinkel
2023-08-21 19:00:45 +02:00
commit 6d2a1d7556
22 changed files with 18009 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
import './mapframe.css'
class Mapframe extends React.Component
{
render() {
return (
<div class="map">
this is the map frame
</div>
);
}
}
export default Mapframe;