Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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