#![allow(non_snake_case)] use dioxus::prelude::*; mod server; pub fn App() -> Element { rsx! { h1 { "Hello, world!" } } }