Created
June 11, 2017 10:04
-
-
Save patcito/afac583e8838acab461f9d56f095dd63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { StyleSheet, Text, View, Image } from "react-native"; | |
import EventDetails from "./screens/EventDetails"; | |
export default class App extends React.Component { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<EventDetails /> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
backgroundColor: "#fff" | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment