Files
bakery-ia/frontend/src/pages/app/CommunicationsPage.tsx
2025-11-27 15:52:40 +01:00

14 lines
306 B
TypeScript

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;