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;