shlink-web-client/src/common/NoMenuLayout.tsx

6 lines
222 B
TypeScript

import type { FC, PropsWithChildren } from 'react';
import './NoMenuLayout.scss';
export const NoMenuLayout: FC<PropsWithChildren> = ({ children }) => (
<div className="no-menu-wrapper container-xl">{children}</div>
);