Created
June 4, 2022 06:56
-
-
Save itsramiel/8bd0da133e5c0ae93026c901379168fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NativeStackScreenProps } from "@react-navigation/native-stack"; | |
export type NavigationType = { | |
Home: undefined; | |
Profile: undefined; | |
}; | |
export type HomeProps = NativeStackScreenProps<NavigationType, "Home">; | |
export type ProfileProps = NativeStackScreenProps<NavigationType, "Profile">; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment