UNPKG

ipsos-components

Version:

Material Design components for Angular

21 lines (18 loc) 384 B
import {Component} from '@angular/core'; /** * @title Radios with ngModel */ @Component({ selector: 'radio-ng-model-example', templateUrl: 'radio-ng-model-example.html', styleUrls: ['radio-ng-model-example.css'], }) export class RadioNgModelExample { favoriteSeason: string; seasons = [ 'Winter', 'Spring', 'Summer', 'Autumn', ]; }