statemanagement.rs 133 B

12345678910
  1. use dioxus::prelude::*;
  2. fn main() {}
  3. pub static Example: Component = |cx| {
  4. cx.render(rsx! {
  5. div {
  6. }
  7. })
  8. };