Commit 2a765568 by G

preparing for result screen

parent 770d0405
...@@ -9,6 +9,7 @@ export type PaymentStackParamList = { ...@@ -9,6 +9,7 @@ export type PaymentStackParamList = {
}; };
homeUserNotLoggedIn: undefined; homeUserNotLoggedIn: undefined;
userLoginScreen: undefined; userLoginScreen: undefined;
paymentResultScreen: undefined;
}; };
export type PaymentStackScreenProps<T extends keyof PaymentStackParamList> = NativeStackScreenProps< export type PaymentStackScreenProps<T extends keyof PaymentStackParamList> = NativeStackScreenProps<
......
import { Text, View } from "react-native";
const PaymentResultScreen = () => {
return (
<View>
<Text>PaymentResultScreen</Text>
</View>
);
};
export default PaymentResultScreen;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment