Easily implement global reactive state as well as local component state in your Seed apps to create re-usable interactive views.
let counter = use_state(||1337);
fancy_button![
"Seed Rocks ", counter, " times!",
counter.on_click(|c| *c+=1),
]
#[atom]
fn global_count() -> u32 {
0
}
... somewhere in your app...
fancy_button![
"Seed Rocks ", global_count, " times!",
global_count.on_click(|c| *c+=1),
]
The best way to get started is to download the Seed Hooks quickstart,
this targets current Seed master and includes seed_hooks
git clone https://github.com/rebo/seed-hooks-quickstart.git
cd seed-hooks-quickstart
cargo make start
Let's explore some basics of Seed Hooks by using the quickstart app
See what functions and methods are available to interact with Seed Hooks
We create a live markdown preview component using seed hooks