aswi2022code-of-duty-gitlab/map_frameworks/src/App.tsx @ a68cb363
1 |
import React from 'react' |
---|---|
2 |
import './App.css' |
3 |
import MapBoxExample from './component/MapBoxExample' |
4 |
import PigeonMapsExample from './component/PigeonMapsExample' |
5 |
import LeafletExample from './component/LeafletExample' |
6 |
|
7 |
const App = () => ( |
8 |
<div className="App"> |
9 |
<MapBoxExample/> |
10 |
<PigeonMapsExample/> |
11 |
<LeafletExample /> |
12 |
</div> |
13 |
)
|
14 |
|
15 |
export default App |