Created
February 28, 2022 18:13
-
-
Save topherPedersen/059784e074938138e8e4a5e1d1c8a8d5 to your computer and use it in GitHub Desktop.
Blank React-Native Boilerplate for New Application
This file contains hidden or 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, | |
} from 'react-native'; | |
class App extends React.Component { | |
constructor(props) { | |
super(props); | |
} | |
render() { | |
return( | |
<SafeAreaView style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}> | |
<Text>hello, world</Text> | |
</SafeAreaView> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment