@susytech/light.js-react

5.1.3 • Public • Published

@susytech/light.js-react

A HOC to easily use @susytech/light.js with React.

Build Status npm (scoped) npm dependencies Status

Usage

The libray provides a higher-order component (HOC) to use @susytech/light.js's Observables easily with React apps.

import light from '@susytech/light.js-react';
import { myBalance$, syncStatus$ } from '@susytech/light.js';

@light({
  myBalance: myBalance$, // myBalance will be a BigNumber
  mySyncVariable: syncStatus$
})
class MyClass extends React.Component {
  render() {
    return (
      <div>
        My balance is {this.props.myBalance.toFormat()}.<br />
        The sync status is {JSON.stringify(this.props.mySyncVariable)}.
      </div>
    );
  }
}

The UI will automatically update when the sync status changes.

Package Sidebar

Install

npm i @susytech/light.js-react

Weekly Downloads

0

Version

5.1.3

License

MIT

Unpacked Size

10.2 kB

Total Files

9

Last publish

Collaborators

  • superstring