You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
365 B
19 lines
365 B
import { FC } from 'react';
|
|
import { Text, View } from 'react-native';
|
|
import { NavigationContainer } from '@react-navigation/native';
|
|
import { MainStack } from './src/screen/main/MainStack';
|
|
|
|
interface Props {
|
|
}
|
|
|
|
const App:FC <Props> = () => {
|
|
return (
|
|
<>
|
|
<NavigationContainer>
|
|
<MainStack/>
|
|
</NavigationContainer>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default App; |