15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
'use client';
|
|
|
|
import { SolutionGuard } from '@/components/auth/SolutionGuard';
|
|
import ProductsPage from '../ProductsPage';
|
|
|
|
export default function EstoquePage() {
|
|
return (
|
|
<SolutionGuard requiredSolution="erp">
|
|
<div className="p-6 max-w-[1600px] mx-auto">
|
|
<ProductsPage />
|
|
</div>
|
|
</SolutionGuard>
|
|
);
|
|
}
|