2023-04-19 22:44:06 +02:00
|
|
|
const Section = (children) =>
|
2023-06-11 21:13:11 +02:00
|
|
|
h("section", { className: "section" }, children);
|
2023-04-19 22:44:06 +02:00
|
|
|
const Container = (children) => h("div", { className: "container" }, children);
|
|
|
|
const Row = (children) => h("div", { className: "row" }, children);
|
2023-07-31 20:54:52 +02:00
|
|
|
const ContentJustify = (children) => h("div", { className: "content text-justify" }, children);
|
2023-04-19 22:44:06 +02:00
|
|
|
const Col12 = (children) => h("div", { className: "col-12" }, children);
|
|
|
|
|
2023-07-31 20:54:52 +02:00
|
|
|
export { Section, Container, Row, ContentJustify, Col12 };
|