-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
44 lines (39 loc) · 1.24 KB
/
Copy pathApp.js
File metadata and controls
44 lines (39 loc) · 1.24 KB
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
39
40
41
42
43
44
import "react-native-gesture-handler";
import * as React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { Provider } from "react-redux";
import { HomeScreen } from "./src/Components/HomeScreen";
import AddTransaction from "./src/Components/AddTransaction";
import { store } from "./src/Reducers/transactionReducer";
import { NativeBaseProvider } from "native-base";
import { createStore } from "redux";
import transactionReducer from "./src/Reducers/transactionReducer";
const Stack = createStackNavigator();
function App() {
return (
<NativeBaseProvider>
<Provider store={store}>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="Home"
component={HomeScreen}
options={{
title: "Expense Tracker",
}}
/>
<Stack.Screen
name="Add"
component={AddTransaction}
options={{
title: "Add an Expense",
}}
/>
</Stack.Navigator>
</NavigationContainer>
</Provider>
</NativeBaseProvider>
);
}
export default App;