I am trying to implement google analytics in my reaact application. But does give any page hit in analytics dashboard.
Here is the implementation: In App.js:
import ReactGA from "react-ga";
componentDidMount() {
ReactGA.initialize("G-QBQXxxxxx");
ReactGA.pageview("/")
}
Anything wrong in my implementation ?



