From 9543c0d11bae0ddf7d19df0e2ee8c11600297735 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Wed, 16 Oct 2024 16:18:13 +0530 Subject: Add InvoiceScreen with thank you message and invoice confirmation --- src/screens/InvoiceScreen.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/screens/InvoiceScreen.js (limited to 'src/screens') diff --git a/src/screens/InvoiceScreen.js b/src/screens/InvoiceScreen.js new file mode 100644 index 0000000..6a4e8b6 --- /dev/null +++ b/src/screens/InvoiceScreen.js @@ -0,0 +1,11 @@ +import React from 'react'; +import { View, Text } from 'react-native'; + +const InvoiceScreen = () => ( + + Thank you for your purchase! + Your invoice has been sent to your email. + +); + +export default InvoiceScreen; -- cgit v1.2.3-59-g8ed1b