Files
video-gen/video-gen-admin/node_modules/@rc-component/table/es/Footer/Summary.js
T
2026-05-25 17:08:18 +08:00

14 lines
248 B
JavaScript

import Cell from "./Cell";
import Row from "./Row";
/**
* Syntactic sugar. Do not support HOC.
*/
const Summary = props => {
const {
children
} = props;
return children;
};
Summary.Row = Row;
Summary.Cell = Cell;
export default Summary;