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