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 (
); }; export default CommunicationsPage;