Created
September 11, 2019 15:50
-
-
Save gpDA/73535501bb47e003c8f9c00c5146bcf3 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
| onSortClick = (sortType) => { | |
| const {BaseActions} = this.props | |
| BaseActions.sortType({sortType, reportType: 'uniqueReportType', level: 'studentData'}) | |
| } | |
| ... | |
| render(){ | |
| const {onSortClick} = this | |
| return( | |
| <TableUI | |
| onSortClick = {onSortClick} | |
| /> | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment