From 963f36194e01307e43109139e0e7f37f68c07ed4 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Mon, 18 Aug 2025 01:04:32 +0100 Subject: [PATCH] Add route exports for application structure - Created a new index.js file to export routes for Production, Inventory, Management, and Developer sections. - This centralizes route management and enhances modularity within the application. --- src/routes/index.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/routes/index.js diff --git a/src/routes/index.js b/src/routes/index.js new file mode 100644 index 0000000..a99b9ef --- /dev/null +++ b/src/routes/index.js @@ -0,0 +1,4 @@ +export { default as ProductionRoutes } from './ProductionRoutes' +export { default as InventoryRoutes } from './InventoryRoutes' +export { default as ManagementRoutes } from './ManagementRoutes' +export { default as DeveloperRoutes } from './DeveloperRoutes'