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 { EMPTY_OBJ } from 'exotic'
import { SubscriptionList as SubscriptionListPlaceholder } from 'abstractions/Subscription/UpcomingDeliveries'
import { SubscriptionListProps } from './typings'
import {
  defaultRenderHeader,
  defaultRenderItem,
} from './renderProps'

class SubscriptionList extends React.PureComponent<SubscriptionListProps> {
  static defaultProps = {
    list: EMPTY_OBJ,
    //
    renderHeader: defaultRenderHeader,
    renderItem: defaultRenderItem,
  }

  render() {
    return <SubscriptionListPlaceholder {...this.props} />
  }
}

export { SubscriptionList }
export default SubscriptionList