@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
26 lines (25 loc) • 775 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 * as r from "react";
import { GridContext as n } from "../../utils/GridContext.mjs";
const c = (t) => {
const e = r.useContext(n);
return /* @__PURE__ */ r.createElement(
"colgroup",
{
ref: (o) => {
e.columnResizeRef.current.colGroupMain = o, e.columnResizeRef.current.initWidths();
}
},
t.children
);
};
export {
c as GridColGroup
};