Commit 438195a5 authored by Kyle Muldoon's avatar Kyle Muldoon

Provide classnames and ids for nearly every dom element

parent edb6ecbf
......@@ -8,7 +8,7 @@ export default function ReviewOrder() {
<p>Step 3 - Order Summary</p>
</div>
<div>
<div className="OrderSummaryElement" id="itemsPrice">
<div>
Items (n):
</div>
......@@ -19,48 +19,45 @@ export default function ReviewOrder() {
</div>
<div>
<div>
<div className="OrderSummaryElement" id="shippingHandling">
<div id="shippingHandlingLabel">
Shipping and Handling:
</div>
<div>
<div id="shippingHandlingPrice">
$xxx.xx
</div>
</div>
<div>
<div>
<div className="OrderSummaryElement" id="beforeTax">
<div id="beforeTaxLabel">
Total Before Tax
</div>
<div>
<div id="beforeTaxPrice">
$xxx.xx
</div>
</div>
<div>
<div>
<div className="OrderSummaryElement" id="taxCalculated">
<div id="taxCalculatedLabel">
Estimated Tax:
</div>
<div>
<div id="taxCalculatedPrice">
$xxx.xx
</div>
</div>
<div>
<div>
<div className="OrderSummaryElement" id="orderTotal">
<div id="orderTotalLabel">
Order Total:
</div>
<div>
<div id="orderTotalPrice">
$xxx.xx
</div>
</div>
</div>
)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment