Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
type ContainerProps = {
children: React.ReactNode;
};
export default function Container({ children }: ContainerProps) {
return <div className="container mx-auto px-5">{children}</div>;
}