Tarjima qoshish uchun havola boyicha o'tib Pull Request oching (havolaga o'tish).
Standart til uchun tarkibni ko'rsatadi.
import { useStore } from "effector-react";
React hook, which subscribes to a store and returns its current value, so when the store is updated, the component will update automatically.
Prefer useUnit
hook instead.
Methods
useStore($store): State
Formulae
useStore($store: Store<State>): State
Arguments
$store
: Store
Returns
(State
): The value from the store
Examples
import { createStore } from "effector";
import { useStore, useEvent } from "effector-react";
const $counter = createStore(0);
const { incrementClicked, decrementClicked } = createApi($counter, {
incrementClicked: (state) => state + 1,
decrementClicked: (state) => state - 1,
});
const App = () => {
const counter = useStore($counter);
const [onIncrement, onDecrement] = useEvent([incrementClicked, decrementClicked]);
return (
<div>
{counter}
<button onClick={onIncrement}>Increment</button>
<button onClick={onDecrement}>Decrement</button>
</div>
);
};
Ingliz tilidagi hujjatlar eng dolzarb hisoblanadi, chunki u effector guruhi tomonidan yozilgan va yangilanadi. Hujjatlarni boshqa tillarga tarjima qilish jamiyat tomonidan kuch va istaklar mavjud bo'lganda amalga oshiriladi.
Esda tutingki, tarjima qilingan maqolalar yangilanmasligi mumkin, shuning uchun eng aniq va dolzarb ma'lumot uchun hujjatlarning asl inglizcha versiyasidan foydalanishni tavsiya etamiz.