summary refs log tree commit diff stats
path: root/src/components/recipies.rs
blob: 1bd3a0de6fa68b178c834fe1e7edda1cc6fe5aff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
use leptos::{IntoView, component, prelude::ElementChild, view};

use crate::components::container::Container;

#[component]
pub fn Recipies() -> impl IntoView {
    view! {
        <Container header="Recipies" buttons=vec![("Mealplan", "mealplan")]>
            <p>"You have 0 recipies."</p>
        </Container>
    }
}