dioxus/reference/statemanagement.rs
2021-09-24 12:11:05 -04:00

10 lines
137 B
Rust

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