Skip to content

Latest commit

 

History

History
25 lines (24 loc) · 277 Bytes

06.tables.md

File metadata and controls

25 lines (24 loc) · 277 Bytes

Tables

Always use <tbody> in tables

BAD
render () {
  return (
    <table>
      <tr>...</tr>
    </table>
  );
}
GOOD
render () {
  return (
    <table>
      <tbody>
        <tr>...</tr>
      </tbody>
    </table>
  );
}