Skip to content

Instantly share code, notes, and snippets.

@patcito
Created June 11, 2017 10:04
Show Gist options
  • Save patcito/afac583e8838acab461f9d56f095dd63 to your computer and use it in GitHub Desktop.
Save patcito/afac583e8838acab461f9d56f095dd63 to your computer and use it in GitHub Desktop.
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