dioxus/examples/core_reference/statemanagement.rs

11 lines
137 B
Rust
Raw Normal View History

2021-07-02 05:30:52 +00:00
use dioxus::prelude::*;
fn main() {}
pub static Example: Component<()> = |cx| {
2021-07-02 05:30:52 +00:00
cx.render(rsx! {
div {
}
})
};