Last active
July 31, 2018 12:55
-
-
Save srph/4d0b8b7a2d97ebd826ad9e2076ecf43d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<DataTable endpoint="api.myapp.com/users"> | |
<DataTable.Column> | |
{(data) => | |
<span>{data.firstName} {data.lastName}</span> | |
)} | |
</DataTable.Column> | |
<DataTable.Column> | |
{(data) => | |
<a href={`/user/${data.id}`}>View</a> | |
)} | |
</DataTable.Column> | |
</DataTable.Column> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment