From 3a0e91bda1e93afa33dd182c2e820c94b3e94593 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 25 Oct 2025 02:15:31 +0200 Subject: feat(treewide): Add further buttons The register product > associate barcode > buy barcode workflow is now usable. The only missing features for an MVP are unit and unit property creation. --- src/lib.rs | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index b5ca65a..36210e7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,7 +31,7 @@ use reactive_stores::Store; use rocie_client::apis::configuration::Configuration; use crate::pages::{ - buy::Buy, home::Home, inventory::Inventory, not_found::NotFound, recipies::Recipies, + associate_barcode::AssociateBarcode, buy::Buy, create_product::CreateProduct, home::Home, inventory::Inventory, not_found::NotFound, recipies::Recipies }; #[derive(Debug, Clone, Store)] @@ -71,6 +71,8 @@ pub fn App() -> impl IntoView { view! { } } /> + + // Inventory impl IntoView { view! { } } /> + + // Recipes } } /> + + // Products + } + } + /> + } + } + /> } -- cgit 1.4.1