Tools are working

This commit is contained in:
Federico Kereki
2018-08-25 22:25:58 -03:00
parent 4f00f6518b
commit 01b438322a
10 changed files with 2197 additions and 32 deletions
+6 -2
View File
@@ -1,7 +1,9 @@
/* @flow */
import React from "react";
import { StyleSheet, Text, View } from "react-native";
export default class App extends React.Component {
export default class App extends React.Component<> {
render() {
return (
<View style={styles.container}>
@@ -13,10 +15,12 @@ export default class App extends React.Component {
}
}
const white: string = "#fff";
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
backgroundColor: white,
alignItems: "center",
justifyContent: "center"
}