1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #![allow(unused)]
- //! Example of components in
- use std::{borrow::Borrow, marker::PhantomData};
- use dioxus_core::prelude::*;
- fn main() {}
- static Header: FC<()> = |ctx| {
- let inner = use_ref(&ctx, || 0);
- let handler1 = move || println!("Value is {}", inner.borrow());
- ctx.render(dioxus::prelude::LazyNodes::new(|nodectx| {
- builder::ElementBuilder::new(nodectx, "div")
- .child(VNode::Component(nodectx.bump().alloc(VComponent::new(
- nodectx,
- Bottom,
- (),
- None,
- &[],
- ))))
- .finish()
- }))
- };
- static Bottom: FC<()> = |ctx| {
- ctx.render(html! {
- <div>
- <h1> "bruh 1" </h1>
- <h1> "bruh 2" </h1>
- </div>
- })
- };
- fn Top(ctx: Context<()>) -> VNode {
- ctx.render(html! {
- <div>
- <h1> "bruh 1" </h1>
- <h1> "bruh 2" </h1>
- </div>
- })
- }
|