File size: 183 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 | import ContentZone from "./content-zone";
export default function OneColumnTemplate(props) {
return (
<>
<ContentZone name="MainContentZone" {...props} />
</>
);
}
|
1e92f2d | 1 2 3 4 5 6 7 8 9 10 | import ContentZone from "./content-zone";
export default function OneColumnTemplate(props) {
return (
<>
<ContentZone name="MainContentZone" {...props} />
</>
);
}
|