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