diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-06-09 17:13:29 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-06-09 17:13:29 -0500 |
commit | 802222fe7181303d710607129e1c74427f07c97c (patch) | |
tree | 169b0878ed5d60f511fcf188df5118c0f446a37d /src/routes/types.ts | |
parent | fc3b2952bb59b80665ebb53ffb3377f647ccdbd3 (diff) | |
download | voidsky-802222fe7181303d710607129e1c74427f07c97c.tar.zst |
Add auth navigations
Diffstat (limited to 'src/routes/types.ts')
-rw-r--r-- | src/routes/types.ts | 2 |
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> = |