mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
15 lines
373 B
Rust
15 lines
373 B
Rust
use std::time::Duration;
|
|
|
|
use dioxus_core::prelude::*;
|
|
|
|
#[async_std::main]
|
|
async fn main() {
|
|
static App: FC<()> = |cx, props|cx.render(LazyNodes::new(|f| f.text(format_args!("hello"))));
|
|
|
|
let mut dom = VirtualDom::new(App);
|
|
|
|
dom.rebuild();
|
|
|
|
let deadline = async_std::task::sleep(Duration::from_millis(50));
|
|
let _fut = dom.run_with_deadline(deadline);
|
|
}
|