mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 04:00:09 +00:00
9 lines
294 B
JavaScript
9 lines
294 B
JavaScript
// src/components-page/account-settings/page-layout.tsx
|
|
import { jsx } from "react/jsx-runtime";
|
|
function PageLayout(props) {
|
|
return /* @__PURE__ */ jsx("div", { className: "flex flex-col gap-6", children: props.children });
|
|
}
|
|
export {
|
|
PageLayout
|
|
};
|
|
//# sourceMappingURL=page-layout.js.map
|