dioxus/examples/reference/signals.rs

11 lines
130 B
Rust
Raw Normal View History

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