Skip to content

Instantly share code, notes, and snippets.

@sebastiandedeyne
Created September 6, 2019 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebastiandedeyne/5d94858ac912e46add0efb8274462907 to your computer and use it in GitHub Desktop.
Save sebastiandedeyne/5d94858ac912e46add0efb8274462907 to your computer and use it in GitHub Desktop.
(
<th className={classnames(
'datatable__cell whitespace-no-wrap',
className,
{
'text-primary': sorted,
'cursor-pointer': sortable,
}
)}>
...
</th>
)
(
<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