-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
20 lines (18 loc) · 869 Bytes
/
App.tsx
File metadata and controls
20 lines (18 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import HomeScreen from './screens/HomeScreen';
import BootpayTestScreen from './screens/BootpayTestScreen';
import WebViewTestScreen from './screens/WebViewTestScreen';
const Stack = createNativeStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Home" component={HomeScreen} options={{ title: '테스트 선택' }} />
<Stack.Screen name="BootpayTest" component={BootpayTestScreen} options={{ title: '부트페이 테스트' }} />
<Stack.Screen name="WebViewTest" component={WebViewTestScreen} options={{ title: '웹뷰 테스트' }} />
</Stack.Navigator>
</NavigationContainer>
);
}