Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
21 lines
581 B
Plaintext
21 lines
581 B
Plaintext
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import React from 'react';
|
|
const baseClass = 'template-minimal';
|
|
export const MinimalTemplate = props => {
|
|
const {
|
|
children,
|
|
className,
|
|
style = {},
|
|
width = 'normal'
|
|
} = props;
|
|
const classes = [className, baseClass, `${baseClass}--width-${width}`].filter(Boolean).join(' ');
|
|
return /*#__PURE__*/_jsx("section", {
|
|
className: classes,
|
|
style: style,
|
|
children: /*#__PURE__*/_jsx("div", {
|
|
className: `${baseClass}__wrap`,
|
|
children: children
|
|
})
|
|
});
|
|
};
|
|
//# sourceMappingURL=index.js.map |