Skip to content

Instantly share code, notes, and snippets.

@biyootiful
Last active October 30, 2017 22:18
Show Gist options
  • Save biyootiful/ece520cb2c3880f1dd9b3ff75aa60854 to your computer and use it in GitHub Desktop.
Save biyootiful/ece520cb2c3880f1dd9b3ff75aa60854 to your computer and use it in GitHub Desktop.
class StartPage extends Component {
render() {
return (
<TouchableHighlight onPress={() => this.props.handlePage("main")}>
<Text style={styles.text}>Go to the MainPage</Text>
</TouchableHighlight>
);
}
}
class MainPage extends Component {
render() {
return (
<TouchableHighlight onPress={() => this.props.handlePage("start")}>
<Text style={styles.text}>Go to the StartPage</Text>
</TouchableHighlight>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment