I have a parent component with 3 radio buttons i.e child-one, child-two and child-three. On click of radio buttons respective child component is displayed. Now, within this child component I have a radio button Yes,No. On click of this child component radio button. Parent component radio button that was clicked its click event gets disappears.
I have passed the data using @Input and @Output to emit the child data.
On click of parent component radio button or on click of child component radio button. radio button click event should not get reset.
Here's a code link with the problem