How do I get a variable from the parent, from a child component?
app.component
secret: string = '123'
child.component
@Input() secret;
console.log(this.secret);
=> undefined
Every example only shows template binding, for example [secret]="secret"
How do I just access the parent component's data from the child component?