react-native-ecommerce-components
Version:
A compilation of components to optimize the development of your ecommerce
25 lines (24 loc) • 677 B
TypeScript
import React from 'react';
interface OrderConfirmationProps {
orderId: string;
orderDate: string;
totalAmount: number;
paymentMethod: string;
shippingAddress: string;
onContinueShopping: () => void;
onViewOrderDetails: () => void;
title: string;
subTitle?: string;
styles?: {
container?: object;
title?: object;
subTitle?: object;
orderInfo?: object;
orderInfoText?: object;
buttonContainer?: object;
button?: object;
buttonText?: object;
};
}
declare const OrderConfirmation: React.FC<OrderConfirmationProps>;
export default OrderConfirmation;