Setup
Add Yewdux to your project's Cargo.toml
. Make sure Yew has the "csr" feature (client side rendering):
Stable release:
[dependencies]
yew = { version = "0.21", features = ["csr"] }
yewdux = "0.10"
Development branch:
[dependencies]
yew = { git = "https://github.com/yewstack/yew.git", features = ["csr"] }
yewdux = { git = "https://github.com/intendednull/yewdux.git" }