summary refs log tree commit diff stats
path: root/src/pages/recipies.rs
blob: 1fc9dcc49d19f6eaeb55148dbcb9391c1e3273da (plain) (blame)
1
2
3
4
5
6
7
8
use leptos::{IntoView, component, view};

use crate::components::site_header::SiteHeader;

#[component]
pub fn Recipies() -> impl IntoView {
    view! { <SiteHeader logo=icondata_io::IoArrowBack back_location="/" name="Recipies" /> }
}