import type { FC, PropsWithChildren } from 'react'; import './NoMenuLayout.scss'; export const NoMenuLayout: FC = ({ children }) => (
{children}
);