From 10152a2fc2b3de942b9f08d81c81d6566003d336 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 2 Oct 2025 13:16:37 +0200 Subject: feat(buy): Add the framework for the /buy page --- src/lib.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index a488d95..3813ebb 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::{ - components::inventory::Inventory, + components::{buy::Buy, inventory::Inventory}, pages::{home::Home, not_found::NotFound}, }; @@ -78,6 +78,12 @@ pub fn App() -> impl IntoView { view! { } } /> + } + } + /> } -- cgit 1.4.1