@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
15 lines • 469 B
JavaScript
import { Popup } from "./index";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export var PopItems = function PopItems(props) {
var children = props.children,
items = props.items;
return /*#__PURE__*/_jsx(Popup, {
content: /*#__PURE__*/_jsxs("div", {
children: [items.map(function () {
return /*#__PURE__*/_jsx("div", {}, "title");
}), footer]
}),
children: children
});
};