Created
June 27, 2018 13:55
-
-
Save leandrojo/67c46bdc535023fa3e81ddf3afc8ad73 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
| data = [ | |
| { | |
| description: 'Taxa de Juros', | |
| value: '1.35', | |
| }, | |
| { | |
| description: 'Parcela', | |
| value: '450.05', | |
| }, | |
| ]; | |
| const render = () => { | |
| return ( | |
| <ReactTable | |
| data={data} | |
| columns={[ | |
| { | |
| Header: "", | |
| accessor: description | |
| }, | |
| { | |
| Header: "", | |
| accessor: value | |
| }, | |
| ]} | |
| /> | |
| ); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment