summaryrefslogblamecommitdiffstats
path: root/src/screens/InvoiceScreen.js
blob: 6a4e8b63ce1acefb0b781b8f53672081d569853a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
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;