diff options
| author | Justin Shillingford <jgs272@cornell.edu> | 2020-06-29 16:13:29 -0400 |
|---|---|---|
| committer | Justin Shillingford <jgs272@cornell.edu> | 2020-06-29 16:13:29 -0400 |
| commit | e8587757ced208708311d80838c9b24777f8edbb (patch) | |
| tree | 4e7969ecd377767bcb4c03cf3d1536496ccdb6b0 /src/routes/Routes.tsx | |
| parent | 6ae1d1bedffae01379dbd71a2b5cbe4aae28d065 (diff) | |
Created LoginInput Component
Diffstat (limited to 'src/routes/Routes.tsx')
| -rw-r--r-- | src/routes/Routes.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx index 0b08cbb1..d96c1d80 100644 --- a/src/routes/Routes.tsx +++ b/src/routes/Routes.tsx @@ -15,7 +15,11 @@ interface RoutesProps {} const Routes: React.FC<RoutesProps> = ({}) => { return ( <RootStack.Navigator initialRouteName="Login"> - <RootStack.Screen name="Login" component={Login} options={ { headerShown: false} }/> + <RootStack.Screen + name="Login" + component={Login} + options={{headerShown: false}} + /> <RootStack.Screen name="Registration" component={Registration} /> </RootStack.Navigator> ); |
