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 { SubscriptionDetailsPage } from 'presets/Subscription/SubscriptionDetailsPage'
import {
  defaultRenderButtons,
  defaultRenderPrice,
  defaultRenderExpectedDelivery,
} from './renderProps'
import { ManageSubscriptionPageProps } from './typings'

class ManageSubscriptionPage extends React.PureComponent<
  ManageSubscriptionPageProps
  > {
  static defaultProps = {
    className: '',
    renderPrice: defaultRenderPrice,
    renderButtons: defaultRenderButtons,
    renderExpectedDelivery: defaultRenderExpectedDelivery,
    //
    onBuyNow: NO_OP,
    OnSkip: NO_OP,
    onCancelSubscription: NO_OP,
  }
  render() {
    return <SubscriptionDetailsPage {...this.props} />
  }
}

export { ManageSubscriptionPage }
export default ManageSubscriptionPage