next.js / examples /cms-agilitycms /lib /components /one-column-template.tsx
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import ContentZone from "./content-zone";
export default function OneColumnTemplate(props) {
return (
<>
<ContentZone name="MainContentZone" {...props} />
</>
);
}