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.
This commit is contained in:
Tom Butcher 2025-08-18 01:04:32 +01:00
parent a18831e67a
commit 963f36194e

4
src/routes/index.js Normal file
View File

@ -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'