Currently we do: ``` <div !if="expr"></div> ``` But that reads as NOT IF, which is confusing. We should use `*` instead. ``` <div *if="expr"></div> ```
Currently we do:
But that reads as NOT IF, which is confusing. We should use
*instead.