blob: 6a4e8b63ce1acefb0b781b8f53672081d569853a (
plain) (
tree)
|
|
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;
|