mirror of
https://github.com/eRgo35/website.git
synced 2026-02-04 05:26:11 +01:00
10 lines
130 B
Rust
10 lines
130 B
Rust
use dioxus::prelude::*;
|
|
|
|
/// Contact page
|
|
#[component]
|
|
pub fn Contact() -> Element {
|
|
rsx! {
|
|
div { "Contact" }
|
|
}
|
|
}
|