16 lines
289 B
TypeScript
16 lines
289 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-form-master',
|
|
templateUrl: './form-master.component.html',
|
|
styleUrls: ['./form-master.component.scss']
|
|
})
|
|
export class FormMasterComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|