I want to implement Google Analytics on my react application and I have set it up using react-ga module.
import ReactGA from "react-ga";
...
ReactGA.initialize('analytics-code-here');
const App = () => {
useEffect(() => {
ReactGA.set({ page: window.location.pathname + window.location.search});
ReactGA.pageview(window.location.pathname + window.location.search)
}, [])
return (
...
);
I have set it up two days ago, but there is no data sent to my analytics account.
How could I recieve data into Google Analytics?