Skip to content

Instantly share code, notes, and snippets.

@anosikeosifo
Created January 21, 2018 16:35
Show Gist options
  • Save anosikeosifo/f24c082e20cfad2b038b21f6472911ce to your computer and use it in GitHub Desktop.
Save anosikeosifo/f24c082e20cfad2b038b21f6472911ce to your computer and use it in GitHub Desktop.
import { NavigationActions } from "react-navigation";
import * as screenNames from "../screen_names";
export const navigateToLogin = () =>
NavigationActions.navigate({
routeName: screenNames.LOGIN
});
export const navigateToSplash = () =>
NavigationActions.navigate({
routeName: screenNames.SPLASH
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment