Skip to content

Instantly share code, notes, and snippets.

@itsramiel
Created June 4, 2022 06:56
Show Gist options
  • Save itsramiel/8bd0da133e5c0ae93026c901379168fc to your computer and use it in GitHub Desktop.
Save itsramiel/8bd0da133e5c0ae93026c901379168fc to your computer and use it in GitHub Desktop.
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