@teravn/onui
Version:
The React UI component library is based on MUI
10 lines (9 loc) • 362 B
TypeScript
import React from 'react';
import { AppBarProps } from '@mui/material/AppBar';
import { BoxProps } from '@mui/material/Box';
export interface MainContentWrapperComposition {
Main: React.FC<BoxProps>;
Header: React.FC<AppBarProps>;
}
declare const MainContentWrapper: React.FC<BoxProps> & MainContentWrapperComposition;
export default MainContentWrapper;