2025-01-25 13:22:58 +01:00
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
2025-01-25 13:23:02 +01:00
|
|
|
mod server;
|
|
|
|
|
2025-01-25 13:22:58 +01:00
|
|
|
pub fn App() -> Element {
|
|
|
|
rsx! {
|
2025-01-25 13:23:02 +01:00
|
|
|
h1 { "Hello, world!" }
|
2025-01-25 13:22:58 +01:00
|
|
|
}
|
|
|
|
}
|