Skip to content

Instantly share code, notes, and snippets.

@csorlandi
Last active June 7, 2018 12:48
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 csorlandi/cb2a468ee46d507556668f10c9fe1dcf to your computer and use it in GitHub Desktop.
Save csorlandi/cb2a468ee46d507556668f10c9fe1dcf to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { View } from 'react-native';
export default class App extends Component {
render() {
return (
<View style={styles.container}>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'black'
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment