mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
33 lines
710 B
Rust
33 lines
710 B
Rust
#![allow(unused)]
|
|
//! Example of components in
|
|
|
|
use std::borrow::Borrow;
|
|
|
|
use dioxus_core::prelude::*;
|
|
|
|
fn main() {}
|
|
|
|
static Header: FC<()> = |ctx, props| {
|
|
let inner = use_ref(&ctx, || 0);
|
|
|
|
let handler1 = move || println!("Value is {}", inner.current());
|
|
|
|
ctx.render(dioxus::prelude::LazyNodes::new(|c| {
|
|
builder::ElementBuilder::new(c, "div")
|
|
.child(VNode::Component(VComponent::new(
|
|
Bottom,
|
|
//
|
|
c.bump.alloc(()),
|
|
)))
|
|
.finish()
|
|
}))
|
|
};
|
|
|
|
static Bottom: FC<()> = |ctx, props| {
|
|
ctx.render(html! {
|
|
<div>
|
|
<h1> "bruh 1" </h1>
|
|
<h1> "bruh 2" </h1>
|
|
</div>
|
|
})
|
|
};
|