We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm using RN 0.60.5. And installed using npm install --save react-native-zendesk, but when I call RNZendesk I get null, example:
npm install --save react-native-zendesk
RNZendesk
const { RNZendesk } = NativeModules; componentWillMount(){ const config = { appId: 'abc123', zendeskUrl: 'https://foo.zendesk.com', clientId: 'mobile_sdk_client_123456' }; console.warn(RNZendesk) }
PS: I only tried on iOS.
The text was updated successfully, but these errors were encountered:
I think the correct way to call is
import * as RNZendesk from "react-native-zendesk"; RNZendesk.initialize({ appId: 'abc123',, clientId: 'https://foo.zendesk.com', zendeskUrl: 'mobile_sdk_client_123456' });
Sorry, something went wrong.
No branches or pull requests
Hi, I'm using RN 0.60.5.
And installed using
npm install --save react-native-zendesk
, but when I callRNZendesk
I get null, example:PS: I only tried on iOS.
The text was updated successfully, but these errors were encountered: