Skip to content

React Utility

GitHub | NPM | Doc's

Installation

shell
$ npm install @biruni/react
shell
$ yarn add @biruni/react
shell
$ pnpm add @biruni/react

Usage As Hook

  1. Import
typescript
import { useStore } from '@biruni/react';
  1. Use
tsx
const MyComponent = () => {
	const store = useStore(MyStore);
};

Use As Props Mapper

  1. Import
typescript
import { withStore, type WithStore } from '@biruni/react';
  1. Define

update Props from:

typescript
type Props = {
	myPropKey: string;
};

to:

typescript
type Props = WithStore<
	typeof MyStore,
	{
		myPropKey: string;
	}
>;
  1. Wrap
typescript
const NewMyComponent = withStore(MyStore, MyComponent);

IMPORTANT

The mapped props will be read-only props and Immutable

Released under the GPLv3-only License