Interactive testing environment for react-shared components
Current: Default
Order summary component displaying purchased products with total calculation and confirmation message.

Premium Course:
$9,900
Bonus eBook:
$2,900
Total :
$12,800
Premium Course:
$9,900
Bonus eBook:
$2,900
Total :
$12,800

Premium Course:
$9,900
Bonus eBook:
$2,900
Total :
$12,800

Premium Course:
$9,900
Bonus eBook:
$2,900
Total :
$12,800

Premium Course:
$9,900
Bonus eBook:
$2,900
Total :
$12,800

Premium Course:
$9,900
Bonus eBook:
$2,900
Total :
$12,800

Premium Course:
$9,900
Bonus eBook:
$2,900
Total :
$12,800

Premium Course:
$9,900
Bonus eBook:
$2,900
Total :
$12,800
Complete Web Development Course:
$14,900
Total :
$14,900
Starter Course:
$4,900
Advanced Course:
$9,900
Bonus Templates:
$1,900
Total :
$16,700
Premium Membership:
$4,900
Total :
$4,900
Free eBook Guide:
FREE
Total :
$0
| Prop | Type | Default | Description |
|---|---|---|---|
layout | 'default' | 'brim' | 'ode' | 'nova' | 'crest' | 'rung' | 'glint' | 'default' | Visual layout variant |
currency | string | 'USD' | Currency code for price formatting |
bannerImage | string | '' | Optional banner image URL |
heading | string | '' | Main heading text (defaults to translation) |
title | string | '' | Subtitle text (defaults to translation) |
button | string | '' | Confirmation message text (defaults to translation) |
products | Product[] | [] | Array of purchased products |
theme | any | undefined | Theme override |
className | string | undefined | Additional CSS classes |
interface Product {
title: string;
price: Price;
}
interface Price {
amount: number;
sale_amount: number;
sale_amount_available: boolean;
}Price Calculation: The component automatically uses sale_amount if sale_amount_available is true and sale_amount is greater than 0, otherwise it uses the regular amount.
Currency Formatting: Uses the formatCurrency utility function to properly format prices based on the currency code.
Layout Variants: Different layouts provide varying levels of visual emphasis and styling. Choose based on your brand and the importance of the summary in your flow.
Banner Images: Some layouts (brim, ode, nova, crest, rung, glint) include special styling for banner images with masks and rounded corners.
Translations: Default text values come from the translation system. You can override them by providing custom heading, title, and button props.