computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
488 B
18 lines
488 B
5 years ago
|
export const GA_TRACKING_ID = 'UA-139582634-1';
|
||
|
|
||
|
// https://developers.google.com/analytics/devguides/collection/gtagjs/pages
|
||
|
export const firePageView = url => {
|
||
|
window.gtag('config', GA_TRACKING_ID, {
|
||
|
page_path: url,
|
||
|
})
|
||
|
};
|
||
|
|
||
|
// https://developers.google.com/analytics/devguides/collection/gtagjs/events
|
||
|
export const event = ({ action, category, label, value }) => {
|
||
|
window.gtag('event', action, {
|
||
|
event_category: category,
|
||
|
event_label: label,
|
||
|
value: value,
|
||
|
})
|
||
|
};
|