File size: 263 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
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>
);
}
|