Here's a video tutorial on how to use the Google Maps React API: youtube.com/watch?v=9e-5QHpadi0
Don't worry too much about the differences between React 17 and React 18. For a beginner, there arent really any except for the way in which you render your application:
// React 17 ReactDOM.render(<App />, document.getElementById('root')) // React 18 ReactDOM.createRoot(document.getElementById('root')!).render(<App />)
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Here's a video tutorial on how to use the Google Maps React API:
youtube.com/watch?v=9e-5QHpadi0
Don't worry too much about the differences between React 17 and React 18. For a beginner, there arent really any except for the way in which you render your application: