Summary.js 241 B

123456789101112
  1. import Cell from "./Cell";
  2. import Row from "./Row";
  3. /**
  4. * Syntactic sugar. Do not support HOC.
  5. */
  6. function Summary(_ref) {
  7. var children = _ref.children;
  8. return children;
  9. }
  10. Summary.Row = Row;
  11. Summary.Cell = Cell;
  12. export default Summary;