forked from pubnub/tutorial-app-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
33 lines (27 loc) · 904 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
import "react-native-gesture-handler";
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import PubNub from "pubnub";
import { PubNubProvider } from "pubnub-react";
import { EmojiPickerView } from "./views/EmojiPicker";
import { ChatView } from "./views/Chat";
const pubnub = new PubNub({
subscribeKey: "demo",
publishKey: "demo",
uuid: "0"
});
console.disableYellowBox = true;
const Stack = createStackNavigator();
export default function App() {
return (
<NavigationContainer>
<PubNubProvider client={pubnub}>
<Stack.Navigator headerMode="none">
<Stack.Screen name="EmojiPicker" component={EmojiPickerView} />
<Stack.Screen name="Chat" component={ChatView} />
</Stack.Navigator>
</PubNubProvider>
</NavigationContainer>
);
}