2021-07-09 05:26:15 +00:00
|
|
|
use dioxus_core::prelude::*;
|
2021-07-13 20:52:25 +00:00
|
|
|
|
2021-09-22 05:25:28 +00:00
|
|
|
fn main() {
|
|
|
|
let mut dom = VirtualDom::new(App);
|
|
|
|
dom.rebuild();
|
|
|
|
}
|
2021-07-09 05:26:15 +00:00
|
|
|
|
2021-11-10 22:09:52 +00:00
|
|
|
const App: FC<()> = |cx, props| {
|
2021-09-22 05:25:28 +00:00
|
|
|
let id = cx.scope_id();
|
2021-10-22 05:16:39 +00:00
|
|
|
// cx.submit_task(Box::pin(async move { id }));
|
2021-07-13 20:48:11 +00:00
|
|
|
|
2021-10-22 05:16:39 +00:00
|
|
|
// let (handle, contents) = use_task(cx, || async { "hello world".to_string() });
|
2021-07-13 20:48:11 +00:00
|
|
|
|
|
|
|
todo!()
|
|
|
|
};
|