Files
bakery-ia/frontend/src/pages/app/CommunicationsPage.tsx

14 lines
306 B
TypeScript
Raw Normal View History

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;