@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
17 lines • 518 B
JavaScript
import React from 'react';
import { Root, Content, Drawer } from './styled';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
var LayoutCrudLeft = function LayoutCrudLeft(_ref) {
var content = _ref.content,
drawer = _ref.drawer,
columnGap = _ref.columnGap;
return /*#__PURE__*/_jsxs(Root, {
columnGap: columnGap,
children: [/*#__PURE__*/_jsx(Content, {
children: content
}), /*#__PURE__*/_jsx(Drawer, {
children: drawer
})]
});
};
export default LayoutCrudLeft;