@teravn/onui
Version:
The React UI component library is based on MUI
15 lines (14 loc) • 513 B
TypeScript
import React from 'react';
import { BoxProps } from '@mui/material/Box';
import { DrawerProps } from '@mui/material/Drawer';
import { MainContentWrapperComposition } from './main-content-wrapper';
interface OnLayoutComposition {
MainContentWrapper: React.FC<BoxProps> & MainContentWrapperComposition;
Sidebar: React.FC<DrawerProps>;
}
export interface Props {
children: React.ReactNode;
className?: string;
}
declare const OnLayout: React.FC<Props> & OnLayoutComposition;
export default OnLayout;