aboutsummaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
authorHusam Salhab <47015061+hsalhab@users.noreply.github.com>2020-06-30 16:52:17 -0400
committerGitHub <noreply@github.com>2020-06-30 16:52:17 -0400
commitd4c59d4d31aedbad19353e639953329df08e6e5a (patch)
tree446799875830477a5ad6dbff78ba7126a8eb7e17 /src/routes
parent5c243b512343549b54dce69bf11ff4851056f26e (diff)
parentb5da6e55ccd4109eb1aa7705540ffb0b4a30a805 (diff)
Merge pull request #9 from JustinShillingford/tma42-Login-Page-UI
[TMA-61] Login Page UI with no real functionality
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/Routes.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx
index 9c2efada..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} />
+ <RootStack.Screen
+ name="Login"
+ component={Login}
+ options={{headerShown: false}}
+ />
<RootStack.Screen name="Registration" component={Registration} />
</RootStack.Navigator>
);