UNPKG

@lobehub/ui

Version:

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

17 lines (16 loc) 451 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"; //#endregion export { FileTree as default }; //# sourceMappingURL=index.mjs.map