about summary refs log tree commit diff
path: root/src/routes/types.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-06-09 17:13:29 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-06-09 17:13:29 -0500
commit802222fe7181303d710607129e1c74427f07c97c (patch)
tree169b0878ed5d60f511fcf188df5118c0f446a37d /src/routes/types.ts
parentfc3b2952bb59b80665ebb53ffb3377f647ccdbd3 (diff)
downloadvoidsky-802222fe7181303d710607129e1c74427f07c97c.tar.zst
Add auth navigations
Diffstat (limited to 'src/routes/types.ts')
-rw-r--r--src/routes/types.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/routes/types.ts b/src/routes/types.ts
index 668dc2e2f..88148fd4d 100644
--- a/src/routes/types.ts
+++ b/src/routes/types.ts
@@ -6,6 +6,8 @@ import type {BottomTabScreenProps} from '@react-navigation/bottom-tabs'
 export type RootStackParamList = {
   Primary: undefined
   Profile: {name: string}
+  Login: undefined
+  Signup: undefined
   NotFound: undefined
 }
 export type RootStackScreenProps<T extends keyof RootStackParamList> =