Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created February 28, 2022 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save topherPedersen/059784e074938138e8e4a5e1d1c8a8d5 to your computer and use it in GitHub Desktop.
Save topherPedersen/059784e074938138e8e4a5e1d1c8a8d5 to your computer and use it in GitHub Desktop.
Blank React-Native Boilerplate for New Application
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