Repository URL to install this package:
|
Version:
2.1.14 ▾
|
import React from 'react'
import { NO_OP } from 'exotic'
import { SingleShipping as SingleShippingPlaceholder } from 'abstractions/Checkout'
import { SingleShippingProps } from './typings'
import { defaultRenderButton, defaultRenderForm } from './renderProps'
class SingleShipping extends React.PureComponent<SingleShippingProps> {
static defaultProps = {
className: '',
//
renderButton: defaultRenderButton,
renderForm: defaultRenderForm,
//
onShipToMultipleAddress: NO_OP,
onSubmit: NO_OP,
}
render() {
return <SingleShippingPlaceholder {...this.props} />
}
}
export { SingleShipping }
export default SingleShipping