12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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,
- // )
- // }))
- }
|