(e)
| 10 | const dispatch = useDispatch(); |
| 11 | |
| 12 | const submitHandler = (e) => { |
| 13 | e.preventDefault(); |
| 14 | dispatch(savePayment({ paymentMethod })); |
| 15 | props.history.push('placeorder'); |
| 16 | }; |
| 17 | return ( |
| 18 | <div> |
| 19 | <CheckoutSteps step1 step2 step3></CheckoutSteps> |
nothing calls this directly
no test coverage detected