File size: 408 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import clsx from 'clsx';
import { ReactNode } from 'react';
type Props = {
children: ReactNode;
className?: string;
};
export default function LayoutBody( { children, className }: Props ) {
const wrapperClass = clsx( className, 'hosting-dashboard-layout__body' );
return (
<div className={ wrapperClass }>
<div className="hosting-dashboard-layout__body-wrapper">{ children }</div>
</div>
);
}
|