I have a custom my-table
with the property row
bound to the host component. I can put html in two ways:
<my-table [rows]="displayEntriesCount"></my-table>
and like this:
<my-table rows="{{displayEntriesCount}}"></my-table>
what's the difference?