I am developing map functionality using ReactJS , My app.js file:
import React, { Component } from 'react'; import './Map'; class App extends Component { render() { return ( <div className="App"> <Map/> </div> ); } } export default App;
Mistake:
./src/App.js Line 8: 'Map' is not defined react/jsx-no-undef Search for the keywords to learn more about each error.
How can I solve this problem?
javascript reactjs
Sarvesh kulkarni
source share