I have a div that looks like this
<div
class="empower-btn"
[showQR]="showQR"
[selectedCoin]="coin"
[availableAmount]="getCoinAmount()"
[coinAmount]="getCoinAmount()"
>stuff</div>
And in my component i declared the properties like this
showQr;
coinAmount;
coin;
availableAmount;
however i am getting an error of
Can't bind to 'showQR' since it isn't a known property of 'div'?
how can i remove this error? thanks am i binding the property in a wrong way?