update cms previews to new layouts. close #234
This commit is contained in:
@ -2,7 +2,7 @@ const Section = (children) =>
|
||||
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 ContentJustify = (children) => h("div", { className: "content text-justify" }, children);
|
||||
const Col12 = (children) => h("div", { className: "col-12" }, children);
|
||||
|
||||
export { Section, Container, Row, Content, Col12 };
|
||||
export { Section, Container, Row, ContentJustify, Col12 };
|
||||
|
@ -1,6 +1,6 @@
|
||||
import PageHeader from "./page-header.js";
|
||||
import DateFormat from "./date-format.js";
|
||||
import md5 from "./md5.js";
|
||||
import { Section, Container, Row, Content, Col12 } from "./base.js";
|
||||
import { Section, Container, Row, ContentJustify, Col12 } from "./base.js";
|
||||
|
||||
export { PageHeader, DateFormat, md5, Section, Container, Row, Content, Col12 };
|
||||
export { PageHeader, DateFormat, md5, Section, Container, Row, ContentJustify, Col12 };
|
||||
|
Reference in New Issue
Block a user