mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-12-11 18:41:12 -06:00
12 lines
361 B
TypeScript
12 lines
361 B
TypeScript
import { clsx } from 'clsx';
|
|
import type { FC, PropsWithChildren } from 'react';
|
|
import './NoMenuLayout.scss';
|
|
|
|
export type NoMenuLayoutProps = PropsWithChildren & {
|
|
className?: string;
|
|
};
|
|
|
|
export const NoMenuLayout: FC<NoMenuLayoutProps> = ({ children, className }) => (
|
|
<div className={clsx('no-menu-wrapper container-xl', className)}>{children}</div>
|
|
);
|