summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/screens/InvoiceScreen.js11
1 files changed, 11 insertions, 0 deletions
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 = () => (
+ <View>
+ <Text>Thank you for your purchase!</Text>
+ <Text>Your invoice has been sent to your email.</Text>
+ </View>
+);
+
+export default InvoiceScreen;