(e)
| 14 | const dispatch = useDispatch(); |
| 15 | |
| 16 | const submitHandler = (e) => { |
| 17 | e.preventDefault(); |
| 18 | dispatch(saveShipping({ address, city, postalCode, country })); |
| 19 | props.history.push('payment'); |
| 20 | } |
| 21 | return <div> |
| 22 | <CheckoutSteps step1 step2 ></CheckoutSteps> |
| 23 | <div className="form"> |
nothing calls this directly
no test coverage detected