mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
46 lines
1.2 KiB
Rust
46 lines
1.2 KiB
Rust
use dioxus_core::prelude::*;
|
|
|
|
fn main() {}
|
|
|
|
fn app<'a>(cx: Context<'a>, props: &()) -> Element<'a> {
|
|
// let vak = use_suspense(
|
|
// cx,
|
|
// || async {},
|
|
// |c, _res| c.render(LazyNodes::new(move |f| f.text(format_args!("")))),
|
|
// );
|
|
|
|
// let d1 = cx.render(to_lazy_nodes(move |f| {
|
|
// f.raw_element(
|
|
// "div",
|
|
// None,
|
|
// [],
|
|
// [],
|
|
// [
|
|
// // f.fragment_from_iter(vak),
|
|
// f.text(format_args!("")),
|
|
// f.text(format_args!("")),
|
|
// f.text(format_args!("")),
|
|
// f.text(format_args!("")),
|
|
// ],
|
|
// None,
|
|
// )
|
|
// }));
|
|
|
|
todo!()
|
|
// cx.render(LazyNodes::new(move |f| {
|
|
// f.raw_element(
|
|
// "div",
|
|
// None,
|
|
// [],
|
|
// [],
|
|
// [
|
|
// f.text(format_args!("")),
|
|
// f.text(format_args!("")),
|
|
// f.text(format_args!("")),
|
|
// f.text(format_args!("")),
|
|
// d1.unwrap(),
|
|
// ],
|
|
// None,
|
|
// )
|
|
// }))
|
|
}
|