aboutsummaryrefslogtreecommitdiff
path: root/src/routes/Routes.tsx
diff options
context:
space:
mode:
authorJustin Shillingford <jgs272@cornell.edu>2020-06-25 17:21:04 -0400
committerJustin Shillingford <jgs272@cornell.edu>2020-06-29 14:20:23 -0400
commitcc98da27fac18ba8060bc7fa76ce13624d452543 (patch)
treecfa7e6fc9e880e1999e0f460bebaa49e91970948 /src/routes/Routes.tsx
parent5c243b512343549b54dce69bf11ff4851056f26e (diff)
Added base app with background color for Sign In
Everything's in App.tsx for now since we haven't discussed structure
Diffstat (limited to 'src/routes/Routes.tsx')
-rw-r--r--src/routes/Routes.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx
index 9c2efada..0b08cbb1 100644
--- a/src/routes/Routes.tsx
+++ b/src/routes/Routes.tsx
@@ -15,7 +15,7 @@ interface RoutesProps {}
const Routes: React.FC<RoutesProps> = ({}) => {
return (
<RootStack.Navigator initialRouteName="Login">
- <RootStack.Screen name="Login" component={Login} />
+ <RootStack.Screen name="Login" component={Login} options={ { headerShown: false} }/>
<RootStack.Screen name="Registration" component={Registration} />
</RootStack.Navigator>
);