-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
38 lines (35 loc) · 857 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import { NavigationContainer } from "@react-navigation/native";
import { ChatApp, mirrorflyInitialize } from "mirrorfly-uikit-react-native";
import React from "react";
import Wrapper from "./src/components/Wrapper";
const App = () => {
const API_URL = "***********************";
const LICENSE_KEY = "***********************";
React.useEffect(() => {
(async () => {
await mirrorflyInitialize({
apiBaseUrl: API_URL,
licenseKey: LICENSE_KEY,
isSandbox: true,
callBack: (res) => {
console.log(res);
},
});
})();
}, []);
return (
<NavigationContainer>
<Wrapper>
<ChatApp />
</Wrapper>
</NavigationContainer>
);
};
export default App;