-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
29 lines (25 loc) · 1.03 KB
/
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
import React from "react";
import { View, Text, Button } from "react-native";
import { createAppContainer } from "react-navigation";
import { createStackNavigator } from "react-navigation-stack";
// Components
import Home from "./Components/Home";
import Profile from "./Components/Profile";
import AppSearch from "./Components/AppSearch";
import ProtestPage from "./Components/ProtestPage";
import ConvertedPage1 from "./Components/ConvertedPage1";
import ConvertedPage2 from "./Components/ConvertedPage2";
import ConvertedPage3 from "./Components/ConvertedPage3";
import ConvertedPage4 from "./Components/ConvertedPage4";
const Navigator = createStackNavigator({
Home: { screen: Home },
Profile: { screen: Profile },
AppSearch: { screen: AppSearch },
ProtestPage: { screen: ProtestPage },
ConvertedPage1: { screen: ConvertedPage1 },
ConvertedPage2: { screen: ConvertedPage2 },
ConvertedPage3: { screen: ConvertedPage3 },
ConvertedPage4: { screen: ConvertedPage4 },
});
const App = createAppContainer(Navigator);
export default App;