useGate(GateComponent, props)
Creates a Gate
Arguments
GateComponent
(Gate)props
(Props)
Returns
(void
)
Example
import {createGate, useGate} from 'effector-react'
import {Route} from 'react-router'
const Page = createGate('page')
Page.state.watch(({match}) => {
console.log(match)
})
const Home = props => {
useGate(Page, props)
return <section>Home</section>
}
;<Route component={Home} />