⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 0018f7263857a060012abd67e0000ab362c31edc5f74a2de5c375ac4a96676be:


<table-thead-tfoot>

  <thead>
    <tr><th each={ header }>{ cell }</th></tr>
  </thead>
  <tfoot>
    <tr><td each={ footer }>{ cell }</td></tr>
  </tfoot>
  <tbody>
    <tr each={ col in rows }>
      <td each={ cell in col }>{ cell }</td>
    </tr>
  </tbody>

  this.header = opts.header
  this.footer = opts.footer
  this.rows = opts.rows

</table-thead-tfoot>