/* @flow */ import * as React from 'react'; import Row from './Row'; import { PageContext } from "../../contexts/PageContext"; import { ContentContext } from "../../contexts/ContentContext"; type FooterProps = { footerCells: Array } export default class Footer extends React.Component { render(): React.Node { return { ({ columns }) => { ({tableId}) => { let row = {}; Object.keys(columns).forEach((column, idx) => { row[column] = this.props.footerCells[idx]; }); const id = `tf-${tableId}`; return ; } } } ; } }