Files
pezkuwi-apps/packages/react-query/README.md
T
pezkuwichain a91f2cf714 fix: update URLs, logos, and package versions
- Fix GitHub URLs from pezkuwi-js/apps to pezkuwichain/pezkuwi-apps
- Fix wiki URL from wiki.pezkuwi.network to wiki.pezkuwichain.io
- Fix support/statement URLs to use pezkuwichain.io domain
- Fix chain logos import (use variables instead of strings)
- Update @pezkuwi/networks to ^14.0.9
- Update @pezkuwi/types-known to ^16.5.8
2026-01-07 16:23:36 +03:00

1.5 KiB

@pezkuwi/react-query

WARNING: This is an internal package to pezkuwichain/pezkuwi-apps so is not intended (yet) for broad use. Since these are generic components, they will move to the pezkuwichain/pezkuwi-ui repo once deemed stable and usable.

For the existing sharable components usable in external React-based projects, take a look at the pezkuwichain/pezkuwi-ui documentation

Overview

A collection of RxJS enabled React components that operate with the @pezkuwi/api-rx library. It automatically manages subscriptions on behalf of the developer, providing a number of unstyled components that can be used to construct UIs.

Usage

Basic usage entails creating a ContextProvider and just using the components. For instance, to display the current node time,

import React from 'react';
import ReactDOM from 'react-dom';

import { Api, NodeTime } from '@pezkuwi/react-query';

...
ReactDOM.render(
  <Api>
    <NodeTime />
  </Api>,
  document.querySelector('#container')
);
...

All components are provided unstyled making no assumptions on the actual use, however they all support (optionally) the label, className and style attributes, that can be used to style to component.

...
ReactDOM.render(
  <Api>
    <NodeTime className='rx-time' label='current node time:' />
  </Api>,
  document.querySelector('#container')
);
...