UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

18 lines (17 loc) 504 B
"use client"; import { styles } from "../style.mjs"; import { memo } from "react"; import { jsx } from "react/jsx-runtime"; import { cx } from "antd-style"; //#region src/Layout/components/LayoutMain.tsx const LayoutMain = memo(({ children, className, ...rest }) => { return /* @__PURE__ */ jsx("main", { className: cx(styles.main, className), ...rest, children }); }); LayoutMain.displayName = "LayoutMain"; //#endregion export { LayoutMain as default }; //# sourceMappingURL=LayoutMain.mjs.map