Skip to content

Instantly share code, notes, and snippets.

@ivportilla
Created December 27, 2016 22:41
Show Gist options
  • Save ivportilla/c99c40cecee494a4859398cacf1159c2 to your computer and use it in GitHub Desktop.
Save ivportilla/c99c40cecee494a4859398cacf1159c2 to your computer and use it in GitHub Desktop.
/* ... */
handleMenuOptions(key) {
switch (key) {
case 'expenses-record': {
Actions.Expenses({ type: ActionConst.REPLACE });
this.props.toggleDrawer();
break;
}
case 'vehicles': {
Actions.Vehicles({ type: ActionConst.REPLACE });
this.props.toggleDrawer();
break;
}
case 'providers': {
break;
}
case 'logout': {
Actions.SignIn({ type: ActionConst.RESET });
break;
}
default:
}
}
/* ... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment