diff --git a/src/navigations/Types.ts b/src/navigations/Types.ts index 87edab8..6cd3f30 100644 --- a/src/navigations/Types.ts +++ b/src/navigations/Types.ts @@ -9,6 +9,7 @@ export type PaymentStackParamList = { }; homeUserNotLoggedIn: undefined; userLoginScreen: undefined; + paymentResultScreen: undefined; }; export type PaymentStackScreenProps = NativeStackScreenProps< diff --git a/src/screens/PaymentResultScreen.tsx b/src/screens/PaymentResultScreen.tsx new file mode 100644 index 0000000..961c7fd --- /dev/null +++ b/src/screens/PaymentResultScreen.tsx @@ -0,0 +1,11 @@ +import { Text, View } from "react-native"; + +const PaymentResultScreen = () => { + return ( + + PaymentResultScreen + + ); +}; + +export default PaymentResultScreen;