UNPKG

@lobehub/ui

Version:

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

20 lines (17 loc) 494 B
'use client'; import { styles } from "./style.mjs"; import { jsx } from "react/jsx-runtime"; import { cx } from "antd-style"; //#region src/mdx/FileTree/index.tsx const FileTree = ({ children, className, ...rest }) => { return /* @__PURE__ */ jsx("div", { className: cx(styles.container, className), ...rest, children }); }; FileTree.displayName = "MdxFileTree"; var FileTree_default = FileTree; //#endregion export { FileTree_default as default }; //# sourceMappingURL=index.mjs.map