//! basic example that renders a simple domtree to the page :) //! //! //! use dioxus_core::prelude::bumpalo::Bump; use dioxus_core::prelude::*; use dioxus_web::*; fn main() { wasm_logger::init(wasm_logger::Config::new(log::Level::Debug)); // log::debug!("Hello world, from the app"); WebsysRenderer::simple_render(html! { // Body
// Title
// {format!("Fibonacci Calculator: n = {}",n)} "Jon's awesome site!!11"
// Subtext / description
// {format!("Calculated in {} nanoseconds",duration)} // {format!("Calculated in {} nanoseconds",duration)} "He worked so hard on it :)"
// Main number
"1337"
// Try another
}); }