mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 16:37:14 +00:00
17 lines
513 B
Rust
17 lines
513 B
Rust
fn main() {}
|
|
|
|
use dioxus_core::prelude::*;
|
|
|
|
static Example: FC<()> = |ctx, props| {
|
|
ctx.render(dioxus_core::prelude::LazyNodes::new(move |ctx| {
|
|
let bump = ctx.bump();
|
|
dioxus::builder::ElementBuilder::new(ctx, "h1")
|
|
.children([{
|
|
use bumpalo::core_alloc::fmt::Write;
|
|
let mut s = bumpalo::collections::String::new_in(bump);
|
|
write!(s, "hello");
|
|
dioxus::builder::text2(s)
|
|
}])
|
|
.finish()
|
|
}))
|
|
};
|