@progress/kendo-react-orgchart
Version:
React OrgChart renders a message to the user with information about the status of an app process. KendoReact OrgChart package
21 lines (20 loc) • 863 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
"use client";
import { ServerOrgChart as o } from "./server/ServerOrgChart.mjs";
import { OrgChart as p } from "./OrgChart.mjs";
import { processOrgChartItems as a } from "./processOrgChartItems.mjs";
import { ServerOrgChartNode as g } from "./server/ServerOrgChartNode.mjs";
import { ServerOrgChartGroup as x } from "./server/ServerOrgChartGroup.mjs";
export {
p as OrgChart,
o as ServerOrgChart,
x as ServerOrgChartGroup,
g as ServerOrgChartNode,
a as processOrgChartItems
};