component: add price in OrderSummary
This commit is contained in:
parent
77a69afbe9
commit
3ec3df773d
@ -20,6 +20,7 @@ const orderSummary = (props) => {
|
|||||||
<ul>
|
<ul>
|
||||||
{ingredients}
|
{ingredients}
|
||||||
</ul>
|
</ul>
|
||||||
|
<p><strong>Total Price: {props.price.toFixed(2)}</strong></p>
|
||||||
<p>Continue to Checkout?</p>
|
<p>Continue to Checkout?</p>
|
||||||
<Button btnType="Danger" clicked={props.purchaseCancalled}>CANCEL</Button>
|
<Button btnType="Danger" clicked={props.purchaseCancalled}>CANCEL</Button>
|
||||||
<Button btnType="Success" clicked={props.purchaseContinued}>CONTINUE</Button>
|
<Button btnType="Success" clicked={props.purchaseContinued}>CONTINUE</Button>
|
||||||
|
@ -106,6 +106,7 @@ class BurgerBuilder extends Component {
|
|||||||
modalClosed={this.purchaseCancelHandler}>
|
modalClosed={this.purchaseCancelHandler}>
|
||||||
<OrderSummary
|
<OrderSummary
|
||||||
ingredients={this.state.ingredients}
|
ingredients={this.state.ingredients}
|
||||||
|
price={this.state.totalPrice}
|
||||||
purchaseCancalled={this.purchaseCancelHandler}
|
purchaseCancalled={this.purchaseCancelHandler}
|
||||||
purchaseContinued={this.purchaseContinueHandler}></OrderSummary>
|
purchaseContinued={this.purchaseContinueHandler}></OrderSummary>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
Loading…
Reference in New Issue
Block a user