Skip to content

Instantly share code, notes, and snippets.

View asamountain's full-sized avatar
🌴
Growing

San asamountain

🌴
Growing
View GitHub Profile
@asamountain
asamountain / App.js
Last active December 8, 2019 11:33
How to install React-GA?
// google analytics components
import { createBrowserHistory } from "history";
import ReactGA from 'react-ga';
ReactGA.initialize('UA-*******-1');
ReactGA.pageview(window.location.pathname + window.location.search);
const history = createBrowserHistory();