10 lines
No EOL
156 B
Rust
10 lines
No EOL
156 B
Rust
use sycamore::prelude::*;
|
|
|
|
#[component]
|
|
pub fn Welcome<G: Html>(cx: Scope) -> View<G> {
|
|
view! { cx,
|
|
h1 {
|
|
"Welcome"
|
|
}
|
|
}
|
|
} |