fix: Update PrimeReact to v10.8.3 to fix missing modules
This commit is contained in:
21
app/clients/page.tsx
Normal file
21
app/clients/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
'use client';
|
||||
|
||||
import React from 'react';
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
||||
const ClientsPage = () => {
|
||||
const router = useRouter();
|
||||
|
||||
React.useEffect(() => {
|
||||
// Rediriger vers la page principale des clients dans (main)
|
||||
router.replace('/(main)/clients');
|
||||
}, [router]);
|
||||
|
||||
return (
|
||||
<div>
|
||||
<p>Redirection vers les clients...</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ClientsPage;
|
||||
Reference in New Issue
Block a user