balibabu
Feat: Make the scroll bar of the DatasetSettings page appear inside #3221 (#4548)
6a82296
raw
history blame contribute delete
263 Bytes
import { Outlet } from 'umi';
import { SideBar } from './sidebar';
export default function DatasetWrapper() {
return (
<div className="flex flex-1">
<SideBar></SideBar>
<div className="flex-1">
<Outlet />
</div>
</div>
);
}