(props: IdentifyComponentProps)
| 103 | type IdentifyComponentProps = IdentifyPayload; |
| 104 | |
| 105 | export function IdentifyComponent(props: IdentifyComponentProps) { |
| 106 | return ( |
| 107 | <Script |
| 108 | dangerouslySetInnerHTML={{ |
| 109 | __html: `window.op('identify', ${JSON.stringify(props)});`, |
| 110 | }} |
| 111 | /> |
| 112 | ); |
| 113 | } |
| 114 | |
| 115 | export function SetGlobalPropertiesComponent(props: Record<string, unknown>) { |
| 116 | return ( |