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 max-w-2xl m-auto px-4">{children}</div>;
}