Skip to content

Commit

Permalink
preparing to init redux createStore
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnutriyuono committed Jul 3, 2020
1 parent 5d721c6 commit 6257312
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,9 @@
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { StatusBar } from "expo-status-bar";
import React from "react";
import { StyleSheet, Text, View } from "react-native";
import { color } from "./src/styles/Pallete";
import Main from "./src";

export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
return <Main />;
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});

0 comments on commit 6257312

Please sign in to comment.