import { Paper } from '@mui/material' import React, { FC } from 'react' import AppWrapper from './AppWrapper' import PanelNav from './PanelNav' interface AppPanelWrapperProps extends React.HTMLAttributes { horizontal?: boolean } const AppPanelWrapper: FC = ({ children, horizontal, }) => { const navClassName = React.useMemo( () => `fill ${horizontal ? 'outside-v-nav' : 'outside-nav'}`, [horizontal] ) return ( {children} ) } export default AppPanelWrapper