AbdulElahGwaith's picture
Upload folder using huggingface_hub
95b5a04 verified
import { Outlet } from 'react-router-dom';
// ==============================|| MINIMAL LAYOUT ||============================== //
export default function MinimalLayout() {
return (
<>
<Outlet />
</>
);
}