0.3.4 • Published 1 year ago

@huma-shan/widgets v0.3.4

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

Huma Widgets

The @humafinance/widgets package is an npm package of React components used to provide subsets of the Huma Finance Protocol functionality in a small user interface element for invoice factoring.

Installation

Install the widgets library via npm or yarn.

yarn add @humafinance/widgets
npm i --save @humafinance/widgets

Invoice factoring borrow widget

import { InvoiceFactoringBorrowWidget } from '@humafinance/widgets'

export const InvoiceFactoringOneTimePage = () => {
  return (
    <InvoiceFactoringBorrowWidget
      poolName='pool name'
      tokenId={tokenId}
      handleClose={handleClose}
    />
  )
}

export const InvoiceFactoringRecurringPage = () => {
  return (
    <InvoiceFactoringBorrowWidget
      poolName='pool name'
      tokenId={tokenId}
      shouldCallApproveForAll
      handleClose={handleClose}
    />
  )
}