Skip to main content

createComponent(store, render)#

Creates store-based React component. The createComponent is useful for transfering logic and data of state to your View component.

tip

You can use hooks in createComponent since effector-react@20.3.0.

Arguments

  1. store (Store | Object): Store or object of Store
  2. render (Function): Render function which will be called with props and state

Returns

(React.Component)

Example#

import {createStore, createEvent} from 'effector'
import {createComponent} from 'effector-react'
const $counter = createStore(0)
const increment = createEvent()
$counter.on(increment, n => n + 1)
const MyCounter = createComponent($counter, (props, state) => (
<div>
Counter: {state}
<button onClick={increment}>increment</button>
</div>
))
const MyOwnComponent = () => {
// any staff here
return <MyCounter />
}

Try it

Last updated on