Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 297 Bytes

loading-row.md

File metadata and controls

19 lines (16 loc) · 297 Bytes
loadingRow


The loadingRow prop expects a valid React element. This gets displayed while the dataset is being retrieved.

Default implementation:

<AjaxTable
  loadingRow={(
    <tr>
      <td>Loading...</td>
    </tr>
  )}
/>