Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export default function MissingSection({ type, ...sectionData }) {
console.log(`Missing section ${type} data ${sectionData}`);
return (
<div>
<h3>Missing a template for {type}</h3>
<p>Check console for component details</p>
</div>
);
}