2
0
Fork 0
mirror of https://github.com/DioxusLabs/dioxus synced 2025-01-02 07:48:45 +00:00
dioxus/examples/reference/async.rs
2021-07-02 01:30:52 -04:00

10 lines
126 B
Rust

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