Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { ReactNode } from 'react';
type Props = {
children: ReactNode;
};
export default function LayoutTop( { children }: Props ) {
return (
<div className="partner-portal-layout__top">
<div className="partner-portal-layout__top-wrapper">{ children }</div>
</div>
);
}