fix(erp): enable erp pages and menu items
This commit is contained in:
14
front-end-agency/app/(agency)/erp/pedidos/page.tsx
Normal file
14
front-end-agency/app/(agency)/erp/pedidos/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
'use client';
|
||||
|
||||
import { SolutionGuard } from '@/components/auth/SolutionGuard';
|
||||
import OrdersPage from '../OrdersPage';
|
||||
|
||||
export default function PedidosPage() {
|
||||
return (
|
||||
<SolutionGuard requiredSolution="erp">
|
||||
<div className="p-6 max-w-[1600px] mx-auto">
|
||||
<OrdersPage />
|
||||
</div>
|
||||
</SolutionGuard>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user