mirror of
https://github.com/jnsahaj/tweakcn.git
synced 2026-09-21 12:50:29 +08:00
13 lines
195 B
TypeScript
13 lines
195 B
TypeScript
"use client";
|
|
|
|
import { useEffect } from "react";
|
|
import { initPostHog } from "@/lib/posthog";
|
|
|
|
export function PostHogInit() {
|
|
useEffect(() => {
|
|
initPostHog();
|
|
}, []);
|
|
|
|
return null;
|
|
}
|