auric-runtime 0.1.5

Runtime for the Ember-inspired Auric SPA framework
Documentation
1
2
3
4
5
6
7
8
9
10
use leptos::prelude::*;

#[component]
pub fn LinkTo(path: String, children: Children) -> impl IntoView {
    view! {
        <a href=path>
            {children()}
        </a>
    }
}