Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 303 Bytes

File metadata and controls

19 lines (16 loc) · 303 Bytes
emptyRow


The emptyRow prop is used to display information when the dataset is empty. This expects a valid React element.

Default Implementation:

<Table
  emptyRow={(
    <tr>
      <td>There's nothing here.</td>
    </tr>
  )}
/>