Within our application we have to show/hide a button depending on some logic. What is a better place to define this logic (and why) ? In Html:
*ngIf='here goes the logic'
//Or
*ngIf='someBoolean' and in typeScript someBoolean = 'here goes the logic'.