From 428cda2da631855a8c8acadb6b8da49c5fd84724 Mon Sep 17 00:00:00 2001 From: hardik Date: Thu, 16 Oct 2025 05:03:49 +0000 Subject: [PATCH] scroll --- src/App.tsx | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 8c533115..fde8e983 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -17,13 +17,13 @@ export default function App() { handleConfirmBooking, handleBackToForm, handleBackToVehicles, - resetBookingFlow + resetBookingFlow, } = useBookingFlow(); const { currentPage, isLoading: navigationLoading, - handleNavigate + handleNavigate, } = useNavigation(); const isLoading = bookingLoading || navigationLoading; @@ -37,9 +37,12 @@ export default function App() { }; return ( -
+
+ {/* Header Section */}
-
+ + {/* Main Page Content */} +
+ + {/* Footer Section */}
); -} \ No newline at end of file +}