import { type FC, type ReactNode } from 'react' import Header from './Header' import SideBar from './Sidebar' type AppLayoutProps = { children: ReactNode } /** * Authenticated app shell: fixed header + sidebar, one scrollable main column. * Horizontal padding on the scrollport keeps content clear of the RTL scrollbar. */ const AppLayout: FC = ({ children }) => { return (
{children}
) } export default AppLayout