this package is a class to easy integrate umami in your react projects.
install the package :
npm i react-umami
create a react_umami class instance
const tracker = new react_umami(
websiteId,
hostname,
umamiUrl
);
then import it where you want to track view :
tracker.trackView("/");
or track event :
tracker.trackEvent(eventType, eventValue, url);
Lucas Sovre portfolio