rgncycle-ui/app/components/map.jsx

11 lines
128 B
React
Raw Normal View History

2023-04-21 14:44:43 +02:00
import React from 'react';
//destructure props
export default function Map(){
return (
<>
<h1>Map</h1>
</>
);
}