import type { FC, PropsWithChildren } from 'react'; import React from 'react'; import Sidebar from '../../slots/Sidebar'; import Content from '../../slots/Content'; import CommonHelmet from '../../common/CommonHelmet'; const SidebarLayout: FC> = ({ children }) => (
{children}
); export default SidebarLayout;