import React, { FC } from 'react' import { Text, View } from 'react-native' import { Button, Loading } from '../../components' import s from './styles' import { IPurchaseConfirmationViewProps } from './types' const PurchaseConfirmationView: FC = ({ texts, styles, onComplete, areActivityIndicatorsEnabled, isLoading, }) => ( {texts?.title || 'Your Tickets are Confirmed!'} {texts?.message?.line1 || 'YOUR TICKETS HAVE BEEN EMAILED TO YOU \n'} {texts?.message?.line2 || 'PLEASE BRING THEM WITH YOU TO THE EVENT'} {/* Your ticket can become{' '} cheaper {' '} or even{' '} FREE! Invite friends {' '} and we'll refund up to{' '} {texts?.promo?.discount || '100%'} {' '} of your ticket money, if they buy tickets as well! {texts?.invite?.title || 'How do you invite your friends?'} {texts?.invite?.message || 'Send them this link:'} {referralLink || 'http://www.theticketfairy.com'} */}