Created
September 6, 2019 07:25
-
-
Save sebastiandedeyne/5d94858ac912e46add0efb8274462907 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
( | |
<th className={classnames( | |
'datatable__cell whitespace-no-wrap', | |
className, | |
{ | |
'text-primary': sorted, | |
'cursor-pointer': sortable, | |
} | |
)}> | |
... | |
</th> | |
) |
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
( | |
<th className={`m-datatable__cell whitespace-no-wrap ${sorted ? 'text-primary' : ''} ${sortable ? 'cursor-pointer' : ''} ${className}`}> | |
... | |
</th> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment