11 lines
139 B
Rust
11 lines
139 B
Rust
|
#![allow(non_snake_case)]
|
||
|
|
||
|
use dioxus::prelude::*;
|
||
|
|
||
|
#[component]
|
||
|
pub fn App() -> Element {
|
||
|
rsx! {
|
||
|
h1 { "hello world" }
|
||
|
}
|
||
|
}
|