14 lines
306 B
TypeScript
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; |