effector-react
v23.2.1
Published
React bindings for effector
Downloads
158,290
Readme
effector-react
React bindings for effector
Installation
npm install --save effector effector-react
Or using yarn
yarn add effector effector-react
Usage
import {createStore, combine, createEvent} from 'effector'
import {useUnit} from 'effector-react'
const inputText = createEvent()
const $text = createStore('').on(inputText, (_, text) => text)
const $size = $text.map(text => text.length)
const Form = () => {
const {text, size} = useUnit({
text: $text,
size: $size,
})
const handleTextChange = useUnit(inputText)
return (
<form>
<input
type="text"
onChange={e => handleTextChange(e.currentTarget.value)}
value={text}
/>
<p>Length: {size}</p>
</form>
)
}
useUnit in docs Units in docs createStore in docs createEvent in docs