mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 02:37:22 +03:00
6 lines
222 B
TypeScript
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>
|
|
);
|