I would like to display two rows (tr) on the same line with equal width. I tried adding col-sm-6 to the tds, but it's the trs are getting displayed on two separate lines. Here's the html:
<div className="jumbotron col-sm-12 text-left row">
                    <div className="panel panel-info">
                        <div className="panel-heading">
                            HEADER
                        </div>
                    </div>
                    <table className="table table-bordered table-condensed table-responsive">
                        <tbody>
                             <tr>
                                <td className="col-sm-6 col-centered leftCol">
                                    <div>
                                        {"hello1"}
                                    </div>
                                </td>
                            </tr>
                            <tr>
                                <td className="col-sm-6 col-centered rightCol">
                                    <div>
                                        {'hello2'}
                                    </div>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
 
     
     
    