Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
247 Bytes
import React from "react";
import "./JumbotronStyles.css";
function JumboWrapper({ children, ...restProps }) {
return (
<section className="jumbo-wrapper" {...restProps}>
{children}
</section>
);
}
export default JumboWrapper;