feat(demo): lay out the demo inputs page

This commit is contained in:
Ken Sodemann
2017-11-15 06:24:22 -06:00
parent 98302fe938
commit 293b756453
6 changed files with 46 additions and 18 deletions

View File

@ -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 {}