/// Component to display a list of items. /// Iterates through the items and renders their name, description, tags, and reviews. use leptos::*; use crate::models::item::Item; #[component] pub fn ItemsList(items: ReadSignal>) -> impl IntoView { view! {

{ "Items" }

} }