Skip to main content

auric_runtime/components/
link_to.rs

1use leptos::prelude::*;
2
3#[component]
4pub fn LinkTo(path: String, children: Children) -> impl IntoView {
5    view! {
6        <a href=path>
7            {children()}
8        </a>
9    }
10}