Skip to content

Instantly share code, notes, and snippets.

@mbvissers
Created December 29, 2020 17:32
Show Gist options
  • Save mbvissers/1abfba9acdbb3acc494ff8be8cc93480 to your computer and use it in GitHub Desktop.
Save mbvissers/1abfba9acdbb3acc494ff8be8cc93480 to your computer and use it in GitHub Desktop.
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