Hello,
We are using your package to integrate our React Application with Mixpanel, however we are working to GDPR compliance and we are not sure if we can achieve it with your package. According to GPDR the cookie from Mixpanel should not be loaded until we obtain the consent of our users but.
How to achieve it using MixpanelProvider component? Some advice?
We are loading MixpanelProvider like next code.
ReactDOM.render((
<BrowserRouter>
<Provider store={store}>
<MixpanelProvider mixpanel={mixpanel}>
<Route component={App} />
</MixpanelProvider>
</Provider>
</BrowserRouter>
), document.getElementById('root'));
Hello,
We are using your package to integrate our React Application with Mixpanel, however we are working to GDPR compliance and we are not sure if we can achieve it with your package. According to GPDR the cookie from Mixpanel should not be loaded until we obtain the consent of our users but.
How to achieve it using MixpanelProvider component? Some advice?
We are loading MixpanelProvider like next code.