20 lines
391 B
TypeScript
20 lines
391 B
TypeScript
import React from 'react';
|
|
import {
|
|
StatusBar,
|
|
} from 'react-native';
|
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
import { Wrapper } from '@components';
|
|
|
|
function App() {
|
|
return (
|
|
<SafeAreaProvider>
|
|
<StatusBar
|
|
backgroundColor="#ffffff"
|
|
barStyle="dark-content"
|
|
/>
|
|
<Wrapper />
|
|
</SafeAreaProvider>
|
|
);
|
|
}
|
|
|
|
export default App; |