Last active
December 31, 2023 03:05
-
-
Save savio777/428345da496d7965d7187fdb42dcea86 to your computer and use it in GitHub Desktop.
Example Type React-native navigation
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 { useRoute } from "@react-navigation/native"; | |
const ExampleComponent = () => { | |
const route = useRoute<IStackAllScreensProps<"LoginToken">>(); | |
const { userId } = route.params; | |
return <></>; | |
}; | |
export default ExampleComponent; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment