dioxus/reference/signals.rs

11 lines
137 B
Rust
Raw Normal View History

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