import Script from 'next/script.js' export interface PosthogProps { posthogProjectApiKey: string apiHost?: string } /** * Posthog analytics component. * See [Posthog docs](https://posthog.com/docs/libraries/js#option-1-add-javascript-snippet-to-your-html-badgerecommendedbadge) for more information. * */ export const Posthog = ({ posthogProjectApiKey, apiHost = 'https://app.posthog.com', }: PosthogProps) => { return ( ) }