gcg-website/static/admin/previews/page-previews/components/base.js

9 lines
432 B
JavaScript
Raw Normal View History

const Section = (children) =>
2023-06-11 21:13:11 +02:00
h("section", { className: "section" }, children);
const Container = (children) => h("div", { className: "container" }, children);
const Row = (children) => h("div", { className: "row" }, children);
const Content = (children) => h("div", { className: "content" }, children);
const Col12 = (children) => h("div", { className: "col-12" }, children);
export { Section, Container, Row, Content, Col12 };