2021-02-12 04:03:01 +00:00
|
|
|
fn main() {}
|
|
|
|
|
2021-03-23 03:52:54 +00:00
|
|
|
use dioxus_core::prelude::*;
|
|
|
|
|
2021-06-01 22:33:15 +00:00
|
|
|
static Example: FC<()> = |ctx| {
|
2021-03-23 03:52:54 +00:00
|
|
|
ctx.render(dioxus_core::prelude::LazyNodes::new(move |ctx| {
|
2021-05-16 06:06:02 +00:00
|
|
|
let bump = ctx.bump();
|
2021-06-17 22:00:32 +00:00
|
|
|
dioxus_core::builder::ElementBuilder::new(ctx, "h1")
|
|
|
|
.children([dioxus_core::builder::text3(bump, format_args!("hello"))])
|
2021-03-23 03:52:54 +00:00
|
|
|
.finish()
|
|
|
|
}))
|
|
|
|
};
|
2021-06-01 22:33:15 +00:00
|
|
|
|
|
|
|
struct Props {
|
|
|
|
text: String,
|
|
|
|
}
|
|
|
|
static Example2: FC<Props> = |ctx| {
|
|
|
|
ctx.render(dioxus_core::prelude::LazyNodes::new(move |__ctx| {
|
|
|
|
let bump = __ctx.bump();
|
2021-06-17 22:00:32 +00:00
|
|
|
dioxus_core::builder::ElementBuilder::new(__ctx, "h1")
|
|
|
|
.children([dioxus_core::builder::text3(
|
|
|
|
bump,
|
|
|
|
format_args!("{}", ctx.props.text),
|
|
|
|
)])
|
2021-06-01 22:33:15 +00:00
|
|
|
.finish()
|
|
|
|
}))
|
|
|
|
};
|