Created
July 6, 2021 13:07
-
-
Save sadewole/02e48ffe6fe84ab641eb68c42875e540 to your computer and use it in GitHub Desktop.
Render GenerateMap.js into App.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logo from './logo.svg'; | |
import './App.css'; | |
import Mapbox from './components/GenerateMap'; | |
function App() { | |
return ( | |
<div className='App'> | |
<header className='App-header'> | |
<img src={logo} className='App-logo' alt='logo' /> | |
<p> | |
Edit <code>src/App.js</code> and save to reload. | |
</p> | |
<a | |
className='App-link' | |
href='https://reactjs.org' | |
target='_blank' | |
rel='noopener noreferrer' | |
> | |
Learn React | |
</a> | |
</header> | |
<Mapbox /> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment