-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
41 lines (37 loc) · 1 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
30
31
32
33
34
35
36
37
38
39
40
41
import 'react-native-gesture-handler';
import * as React from 'react';
import {Home} from '@step-pagamentos/step-mobile';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import {NavigationContainer} from '@react-navigation/native';
import {View, Text} from 'react-native';
function HomeScreen() {
return (
<View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
<Text>Home!</Text>
</View>
);
}
function StepScreen() {
return (
<Home
id={1}
name={'John'}
cellPhone={'61-123451234'}
cpf={'529.577.490-56'}
email={'[email protected]'}
birthDate={'1999-01-01'}
tempToken={'correct_temp_token'}
/>
);
}
const Tab = createBottomTabNavigator();
export default function App() {
return (
<NavigationContainer>
<Tab.Navigator>
<Tab.Screen name="Home" component={HomeScreen} />
<Tab.Screen name="Investimentos" component={StepScreen} />
</Tab.Navigator>
</NavigationContainer>
);
}