From 427ce16023613536b8176e6dee7c1580a5980c97 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 23 Oct 2025 02:24:29 +0200 Subject: feat(treewide): Make usage more intuitive --- src/lib.rs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 3813ebb..b5ca65a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,9 +30,8 @@ use leptos_router::{ use reactive_stores::Store; use rocie_client::apis::configuration::Configuration; -use crate::{ - components::{buy::Buy, inventory::Inventory}, - pages::{home::Home, not_found::NotFound}, +use crate::pages::{ + buy::Buy, home::Home, inventory::Inventory, not_found::NotFound, recipies::Recipies, }; #[derive(Debug, Clone, Store)] @@ -84,6 +83,12 @@ pub fn App() -> impl IntoView { view! { } } /> + } + } + /> } -- cgit 1.4.1