Files
shlink-web-client/src/common/NoMenuLayout.tsx
2023-02-18 10:40:37 +01:00

7 lines
231 B
TypeScript

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