Skip to content

Instantly share code, notes, and snippets.

@bewarusman
Created January 9, 2021 06:19
Show Gist options
  • Save bewarusman/986b5aae7206bc5a1ba2bef480188f99 to your computer and use it in GitHub Desktop.
Save bewarusman/986b5aae7206bc5a1ba2bef480188f99 to your computer and use it in GitHub Desktop.
render() {
return (
<table ref={(el) => (this.el = el)}>
<thead>
<tr>
<th>#</th>
<th>Title</th>
<th>Completed</th>
<th></th>
</tr>
</thead>
<tbody>{this.props.children}</tbody>
</table>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment