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

@ -7,10 +7,9 @@ import { Component, OnInit, ViewEncapsulation } from '@angular/core';
encapsulation: ViewEncapsulation.None
})
export class InputsTestPageComponent implements OnInit {
testInputOne = 'This is data for test input one';
constructor() { }
ngOnInit() {
}
constructor() {}
ngOnInit() {}
}