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() { ...@@ -8,7 +8,7 @@ export default function ReviewOrder() {
<p>Step 3 - Order Summary</p> <p>Step 3 - Order Summary</p>
</div> </div>
<div> <div className="OrderSummaryElement" id="itemsPrice">
<div> <div>
Items (n): Items (n):
</div> </div>
...@@ -19,48 +19,45 @@ export default function ReviewOrder() { ...@@ -19,48 +19,45 @@ export default function ReviewOrder() {
</div> </div>
<div> <div className="OrderSummaryElement" id="shippingHandling">
<div> <div id="shippingHandlingLabel">
Shipping and Handling: Shipping and Handling:
</div> </div>
<div> <div id="shippingHandlingPrice">
$xxx.xx $xxx.xx
</div> </div>
</div> </div>
<div> <div className="OrderSummaryElement" id="beforeTax">
<div> <div id="beforeTaxLabel">
Total Before Tax Total Before Tax
</div> </div>
<div> <div id="beforeTaxPrice">
$xxx.xx $xxx.xx
</div> </div>
</div> </div>
<div> <div className="OrderSummaryElement" id="taxCalculated">
<div> <div id="taxCalculatedLabel">
Estimated Tax: Estimated Tax:
</div> </div>
<div> <div id="taxCalculatedPrice">
$xxx.xx $xxx.xx
</div> </div>
</div> </div>
<div> <div className="OrderSummaryElement" id="orderTotal">
<div> <div id="orderTotalLabel">
Order Total: Order Total:
</div> </div>
<div> <div id="orderTotalPrice">
$xxx.xx $xxx.xx
</div> </div>
</div> </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