use leptos::{ IntoView, component, prelude::{ClassAttribute, ElementChild}, view, }; use crate::{ api::{get_full_product_by_id, get_products}, components::{async_fetch::AsyncFetch, site_header::SiteHeader}, }; #[component] pub fn Inventory() -> impl IntoView { view! { } }