Created
March 5, 2020 17:22
-
-
Save bogoslavskiy/92dc2755ed8605999cf09fa30e8f3213 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { createStackNavigator } from '@react-navigation/stack'; | |
import { AuthStackParams } from './types/AuthStackParams'; | |
import { LoginScreen } from '../screens/LoginScreen'; | |
const AuthStack = createStackNavigator<AuthStackParams>(); | |
export const AuthStackScreens: React.FC = () => ( | |
<AuthStack.Navigator initialRouteName="Login"> | |
<AuthStack.Screen | |
name="Login" | |
component={LoginScreen} | |
/> | |
</AuthStack.Navigator> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment