dioxus/packages/core/examples/vdom_usage.rs

16 lines
373 B
Rust
Raw Normal View History

use std::time::Duration;
use dioxus_core::prelude::*;
#[async_std::main]
async fn main() {
2021-09-21 17:42:52 +00:00
static App: FC<()> = |cx, props|cx.render(LazyNodes::new(|f| f.text(format_args!("hello"))));
let mut dom = VirtualDom::new(App);
dom.rebuild();
2021-09-01 04:57:04 +00:00
let deadline = async_std::task::sleep(Duration::from_millis(50));
let _fut = dom.run_with_deadline(deadline);
}