#![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.view(html! {

"This is the header bar"

"Idnt it awesome"

}) }; static Bottom: FC<()> = |ctx, props| { ctx.view(html! {

"bruh 1"

"bruh 2"

}) }; static Example: FC<()> = |ctx, props| { ctx.view(html! {

"BROSKI!"

"DRO!"

}) };