import type { FC, PropsWithChildren } from 'react'; import WithBreadcrumbs from '@/components/withBreadcrumbs'; import WithMetaBar from '@/components/withMetaBar'; import WithNavBar from '@/components/withNavBar'; import WithProgressionSidebar from '@/components/withProgressionSidebar'; import WithSidebarCrossLinks from '@/components/withSidebarCrossLinks'; import ArticleLayout from '@/layouts/Article'; const LearnLayout: FC = ({ children }) => ( <>
{children}
); export default LearnLayout;