React Navigation is one solution that's available for routing with React Native. Research and name at least one or more others. code example
Example: react native routes
import { createSwitchNavigator } from 'react-navigation';// create switch navigation with authentication flow and main appconst SwitchNavigator = createSwitchNavigator( { Login: AuthNavigator, App: AppNavigator }, { initialRouteName: 'Login' });const App = () => ( <SwitchNavigator />);export default App;