I\'m working on a small reusable Component which styles radio buttons and emits the selected values.
import { Component, OnInit, Input, Output, EventEmitter
export class ConfirmationmodalComponent implements OnInit { client_notification: any = false; candidate_notification: any = false; cancel_associated_session: any = false; constructor( ) {} ngOnInit(): void { } }
Yes No