mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
feat(demo): lay out the demo inputs page
This commit is contained in:
@ -1,14 +1,13 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
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,
|
||||
InputsRoutingModule
|
||||
],
|
||||
declarations: [InputsTestPageComponent]
|
||||
imports: [CommonModule, FormsModule, InputsRoutingModule],
|
||||
declarations: [InputsTestPageComponent],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||
})
|
||||
export class InputsModule { }
|
||||
export class InputsModule {}
|
||||
|
||||
Reference in New Issue
Block a user