forked from TTFH/wa-cloud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
31 lines (28 loc) · 899 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
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import InboxScreen from "./app/screens/InboxScreen";
import ChatScreen from "./app/screens/ChatScreen";
import AddPhoneScreen from "./app/screens/AddPhoneScreen";
// npm start
/*
TODO:
show forwarding tag on messages
send reply-to msg
send forwarding msg
send template message
show image from link
send image from link
*/
const Stack = createStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Home" screenOptions={{ headerShown: false }} >
<Stack.Screen name="Home" component={InboxScreen} />
<Stack.Screen name="Chat" component={ChatScreen} />
<Stack.Screen name="AddPhone" component={AddPhoneScreen} />
</Stack.Navigator>
</NavigationContainer>
);
}