mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
17 lines
417 B
TypeScript
17 lines
417 B
TypeScript
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-group-inputs-page',
|
|
templateUrl: './group-inputs-page.component.html',
|
|
styleUrls: ['./group-inputs-page.component.scss'],
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class GroupInputsPageComponent implements OnInit {
|
|
radioValue = 'tripe';
|
|
selectValue = 'brains';
|
|
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|