16 lines
396 B
TypeScript
16 lines
396 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { Validators, FormBuilder, FormGroup } from '@angular/forms';
|
||
|
import { Http, Response } from '@angular/http';
|
||
|
import { ApiService } from '../providers/api-service';
|
||
|
import 'rxjs/add/operator/map';
|
||
|
|
||
|
@Component({
|
||
|
templateUrl: 'add-data.component.html',
|
||
|
providers: [ApiService]
|
||
|
})
|
||
|
export class AddDataComponent {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
}
|