123456789101112131415161718192021 |
- use dioxus::prelude::*;
- fn main() {
- // init debug tool for WebAssembly
- wasm_logger::init(wasm_logger::Config::default());
- console_error_panic_hook::set_once();
- launch(app);
- }
- fn app() -> Element {
- rsx! (
- div { style: "text-align: center;",
- h1 { "🌗 Dioxus 🚀" }
- h3 { "Frontend that scales." }
- p {
- "Dioxus is a portable, performant, and ergonomic framework for building cross-platform user interfaces in Rust."
- }
- }
- )
- }
|