Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
App-World-Is-Black.js
Browse files Browse the repository at this point in the history
All world is black
  • Loading branch information
yepMad committed Oct 18, 2018
1 parent 983d848 commit fc787fd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions React-Native/App-World-Is-Black.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';
export default class App {
render() {
return (
<View style={styles.container}>
<Text>World</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#000',
}
});

0 comments on commit fc787fd

Please sign in to comment.