@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
18 lines • 678 B
JavaScript
import * as ReactDOM from 'react-dom/client';
import React from 'react';
import { FlowWithPanel } from "./blocks/flowWithPanel";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var root = ReactDOM.createRoot(document.getElementById('root'));
root.render( /*#__PURE__*/_jsxs("div", {
className: "h-[100%]",
children: [/*#__PURE__*/_jsx("div", {
className: "h-[60px] bg-gray-100 flex items-center justify-center",
children: /*#__PURE__*/_jsx("div", {
children: "AI-Flow"
})
}), /*#__PURE__*/_jsx("div", {
className: "h-[calc(100%-60px)]",
children: /*#__PURE__*/_jsx(FlowWithPanel, {})
})]
}));