New alert system and panel de control page
This commit is contained in:
14
frontend/src/pages/app/CommunicationsPage.tsx
Normal file
14
frontend/src/pages/app/CommunicationsPage.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
import { Outlet } from 'react-router-dom';
|
||||
|
||||
// Placeholder page for communications section
|
||||
// This allows the nested routing to work properly
|
||||
const CommunicationsPage: React.FC = () => {
|
||||
return (
|
||||
<div>
|
||||
<Outlet />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default CommunicationsPage;
|
||||
Reference in New Issue
Block a user