dioxus/examples/core_reference/statemanagement.rs

10 lines
137 B
Rust

use dioxus::prelude::*;
fn main() {}
pub static Example: Component<()> = |cx| {
cx.render(rsx! {
div {
}
})
};