mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-27 20:26:40 +00:00
7 lines
231 B
TypeScript
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>
|
|
);
|