blob: 6c247f7c0eae9beec372ba33ee5f8c635026248c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* Generated with the TypeScript template
* https://github.com/react-native-community/react-native-template-typescript
*
* @format
*/
import React from 'react';
import Routes from './routes';
import {NavigationContainer} from '@react-navigation/native';
const App = () => {
return (
<NavigationContainer>
<Routes />
</NavigationContainer>
);
};
export default App;
|