dioxus/packages/core/examples/alternative.rs

23 lines
499 B
Rust
Raw Normal View History

2021-07-18 16:39:32 +00:00
use dioxus_core::prelude::*;
fn main() {}
2021-09-21 17:42:52 +00:00
pub static Example: FC<()> = |cx, props| {
2021-09-01 04:57:04 +00:00
let list = (0..10).map(|_f| LazyNodes::new(move |_f| todo!()));
2021-07-11 23:31:07 +00:00
2021-07-18 16:39:32 +00:00
cx.render(LazyNodes::new(move |cx| {
cx.raw_element(
"div",
None,
[],
[],
[
2021-07-18 16:39:32 +00:00
cx.text(format_args!("hello")),
cx.text(format_args!("hello")),
cx.fragment_from_iter(list),
],
2021-07-18 16:39:32 +00:00
None,
)
}))
};