Angular

Last Updated: 8/30/2023

Working with Radio Buttons

<div class="radio" *ngFor="let method of contactMethod">
	<label>
		<input type="radio" ngModel name="contactMethod" [value]="method.id">{{method.name}}
	<label>
</div>