AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
type Props = {
children?: React.ReactNode;
};
const Container = ({ children }: Props) => {
return <div className="container mx-auto px-5">{children}</div>;
};
export default Container;