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