igniteui-react-grids
Version:
Ignite UI React grid components.
17 lines (16 loc) • 440 B
JavaScript
import { IgrSummaryRow } from "./igr-summary-row";
import { SummaryRowSection } from "./SummaryRowSection";
export class IgrSummaryRowSection extends IgrSummaryRow {
createImplementation() {
return new SummaryRowSection();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
}