📄️ Interpolation
`{{ value }}`
📄️ Property Binding
`[yourProp]="dataToInput"`
📄️ Event Binding
`(yourEvent)="onYourEvent($event)"`
📄️ Content Projection
`<ng-content />`
📄️ Two-way Binding
`[(yourProperty)]`
Data binding is a way to establish a connection between the template and the component.
`{{ value }}`
`[yourProp]="dataToInput"`
`(yourEvent)="onYourEvent($event)"`
`<ng-content />`
`[(yourProperty)]`