@julseb-lib/react 1.0.47 → 1.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -69989,9 +69989,9 @@ var PageLayout = ({
|
|
|
69989
69989
|
}) => {
|
|
69990
69990
|
return /* @__PURE__ */ (0, import_jsx_runtime370.jsxs)(import_jsx_runtime370.Fragment, { children: [
|
|
69991
69991
|
meta && /* @__PURE__ */ (0, import_jsx_runtime370.jsx)(Meta, { ...meta }),
|
|
69992
|
-
(0, import_react118.isValidElement)(header) ? header : /* @__PURE__ */ (0, import_jsx_runtime370.jsx)(Header, { ...header }),
|
|
69992
|
+
header && ((0, import_react118.isValidElement)(header) ? header : /* @__PURE__ */ (0, import_jsx_runtime370.jsx)(Header, { ...header })),
|
|
69993
69993
|
!noWrapper ? /* @__PURE__ */ (0, import_jsx_runtime370.jsx)(Wrapper, { ...wrapperProps, children: !noMain ? /* @__PURE__ */ (0, import_jsx_runtime370.jsx)(Main, { ...mainProps, children }) : children }) : children,
|
|
69994
|
-
(0, import_react118.isValidElement)(footer) ? footer : /* @__PURE__ */ (0, import_jsx_runtime370.jsx)(Footer, { ...footer })
|
|
69994
|
+
footer && ((0, import_react118.isValidElement)(footer) ? footer : /* @__PURE__ */ (0, import_jsx_runtime370.jsx)(Footer, { ...footer }))
|
|
69995
69995
|
] });
|
|
69996
69996
|
};
|
|
69997
69997
|
|