@re-frame/preact
v0.20.0
Published
1. Make your store available via React context by using `Provider` from `@re-frame/preact` at the top of your application. This will allow you to access subscriptions and dispatch events within the React tree.
Downloads
7
Readme
@re-frame/preact
- Make your store available via React context by using
Provider
from@re-frame/preact
at the top of your application. This will allow you to access subscriptions and dispatch events within the React tree.
import React from "react"
import ReactDOM from "react-dom"
import {createStore} from "@re-frame/standalone"
import {Provider} from "@re-frame/react"
const store = createStore()
const App = () => (
<Provider store={store}>
<YourAppGoesHere />
</Provider>
)
ReactDOM.render(<App />, document.getElementById("root"))
- Subscribe to your store from within the tree.
import React from "react"
import {useSubscription} from "@re-frame/react"
const ChatList = () => {
const chats = useSubscription("chats")
return (
<ol>
{chats.map(chat => (
<li key={chat.id}>{chat.title}</li>
)}
</ol>
)
}
- Dispatch events to your store.
import React from "react"
import {useDispatch} from "@re-frame/react"
const MyComponent = () => {
const dispatch = useDispatch()
return (
<button onClick={() => dispatch({id: "my-event"})}>
Click me to trigger "my-event"
</button>
)
}