argos/dmp-frontend/src/app/dataset-profile-form/page-form/page-component.ts

20 lines
421 B
TypeScript
Raw Normal View History

import { Component, Input, Output, EventEmitter } from '@angular/core';
2018-10-05 17:00:54 +02:00
import { FormGroup } from '@angular/forms';
2018-05-14 08:44:35 +02:00
import { Page } from '../../models/datasetProfileAdmin/Page';
@Component({
2018-10-05 17:00:54 +02:00
selector: 'app-page-form',
templateUrl: './page-component.html',
2018-10-02 16:33:58 +02:00
styleUrls: ['./page-component.scss']
})
export class PageFormComponent {
@Input() form: FormGroup;
@Input() dataModel: Page;
TargetValidation() {
}
2018-10-02 16:33:58 +02:00
}