//! DioxusLabs Webiste //! ------------------ //! //! This is the example powering the DioxusLabs website :) //! It's always good to dogfood your code, right? use dioxus::prelude::*; fn main() {} mod state { pub struct AppState { cur_page: Route, } pub enum Route { Homepage, Docs, } } static APP: FC<()> = |ctx| { ctx.render(html! {