import React from 'react'; import { Outlet } from 'react-router-dom'; import TopNav from './components/TopNav'; import NotificationToast from './components/NotificationToast'; const UserLayout = () => { return (
{/* The routed content like Dashboard or CreateTicket will render here */} {/* Global real-time notifications popup */}
); }; export default UserLayout;