mirror of
https://github.com/task-17-lct/frontend.git
synced 2025-10-28 21:17:28 +03:00
17 lines
301 B
TypeScript
17 lines
301 B
TypeScript
import React from 'react';
|
||
import { Register } from './pages/Register';
|
||
import { MyMap } from './сomponents/map';
|
||
import 'mapbox-gl/dist/mapbox-gl.css';
|
||
|
||
configureRootTheme({ theme })
|
||
|
||
function App() {
|
||
return (
|
||
<div className="App">
|
||
<MyMap></MyMap>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
export default App;
|