1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! The functional interface for Yewdux
use ;
use *;
use crate::;
/// This hook allows accessing the state of a store. When the store is modified, a re-render is
/// automatically triggered.
///
/// # Example
/// ```ignore
/// # use yew_functional::function_component;
/// # use yew::prelude::*;
/// use yewdux_functional::use_store;
///
/// #[derive(Default, Clone, Store)]
/// struct State {
/// count: u32,
/// }
///
/// #[function_component(App)]
/// fn app() -> Html {
/// let (state, dispatch) = use_store::<State>();
/// let onclick = dispatch.reduce_callback(|s| s.count += 1);
/// html! {
/// <>
/// <p>{ state.count }</p>
/// <button {onclick}>{"+1"}</button>
/// </>
/// }
/// }
/// ```