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    
@skava/ui / src / forms / views / PaymentWithBillingAddress / PaymentWithBillingAddress.tsx
Size: Mime:
import React from 'react'
import { Form } from './Form'
import { PaymentWithBillingAddressProps } from './typings'

class PaymentWithBillingAddress extends React.PureComponent<
  PaymentWithBillingAddressProps
  > {
  render() {
    return <Form {...this.props} />
  }
}

export { PaymentWithBillingAddress }
export default PaymentWithBillingAddress