UNPKG

@wordpress/block-editor

Version:
18 lines (17 loc) 465 B
// packages/block-editor/src/layouts/index.js import flex from "./flex"; import flow from "./flow"; import constrained from "./constrained"; import grid from "./grid"; var layoutTypes = [flow, flex, constrained, grid]; function getLayoutType(name = "default") { return layoutTypes.find((layoutType) => layoutType.name === name); } function getLayoutTypes() { return layoutTypes; } export { getLayoutType, getLayoutTypes }; //# sourceMappingURL=index.js.map