Sending a variable to child component
// in child component @Input() name: string; //in parents html // to send string <rio-hello name="World"></rio-hello> // to send variable ( bind) <rio-hello [name]="helloName"></rio-hello>