UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

15 lines (12 loc) 481 B
import { Router } from 'express'; import routes$1 from './report/routes.js'; import routes$2 from './dashboard/routes.js'; /* eslint-disable no-param-reassign */ function routes({ layoutPath, services }) { const router = Router({ mergeParams: true }); router.use('/report', routes$1({ layoutPath, services })); router.use('/dashboard', routes$2({ layoutPath, services })); return router; } export { routes as default, routes }; //# sourceMappingURL=routes.js.map