application/util/mock-table.js
import React from 'react';
class MockTable extends React.Component {
    constructor(props) {
        super(props);
    }
    render() {
        return (
            <table>
                <tbody>
                    {this.props.children}
                </tbody>
            </table>
        );
    }
}
export default MockTable;