2023-01-10 16:26:15 +01:00

8 lines
142 B
Rust

use yew::{function_component, html, Html};
#[function_component]
pub fn Socials() -> Html {
html! {
<>{"Social Media"}</>
}
}