UNPKG

stackpress

Version:

Incept is a content management framework.

10 lines (9 loc) 468 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = LayoutRight; const jsx_runtime_1 = require("react/jsx-runtime"); function LayoutRight({ open, head, children }) { const top = head ? 'head' : ''; const right = open ? 'open' : ''; return ((0, jsx_runtime_1.jsx)("aside", { className: `layout-right ${top} ${right}`, children: (0, jsx_runtime_1.jsx)("main", { className: "container", children: children }) })); }