Created
December 29, 2020 17:32
-
-
Save mbvissers/1abfba9acdbb3acc494ff8be8cc93480 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { SafeAreaView, Text, StatusBar } from 'react-native'; | |
const App = () => { | |
return ( | |
<> | |
<StatusBar barStyle="light-content" /> | |
<SafeAreaView style={{padding: 8}}> | |
<Text>Some sample text</Text> | |
</SafeAreaView> | |
</> | |
); | |
}; | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment