UNPKG

stackpress

Version:

Incept is a content management framework.

7 lines (6 loc) 336 B
import { jsx as _jsx } from "react/jsx-runtime"; export default function LayoutRight({ open, head, children }) { const top = head ? 'head' : ''; const right = open ? 'open' : ''; return (_jsx("aside", { className: `layout-right ${top} ${right}`, children: _jsx("main", { className: "container", children: children }) })); }