Let's say I have the following component:
class TestComponent {
@Input() title;
}
Is there a difference regarding change detection between using it with brackets and without brackets?
<test [title]="title"></test>
<test [title]="'Component Title'"></test>
<test title="Component Title"></test>
To be more accurate, the static version, will be checked with every change detection, too?
