In Ember, I know that I can include classes with if statements using the {{if}} handlebar. However, how can I do this inside a component handlebar?
For example, how can I do something like this:
{{myComponent class="my-class {{if isThisTrue 'true-class' 'false-class'}}" }}