mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 08:09:32 +08:00
14 lines
481 B
TypeScript
14 lines
481 B
TypeScript
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { CommonModule } from '@angular/common';
|
|
import { InputsTestPageComponent } from './inputs-test-page.component';
|
|
|
|
import { InputsRoutingModule } from './inputs-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, FormsModule, InputsRoutingModule],
|
|
declarations: [InputsTestPageComponent],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class InputsModule {}
|