mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-11 17:55:33 +00:00
11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
import ReactGA from "react-ga4";
|
|
|
|
import { GA_ID } from "@/setup/constants";
|
|
|
|
if (GA_ID) {
|
|
ReactGA.initialize([
|
|
{
|
|
trackingId: GA_ID,
|
|
},
|
|
]);
|
|
}
|