16 lines
379 B
TypeScript
16 lines
379 B
TypeScript
|
|
import {Component, Input} from '@angular/core';
|
||
|
|
import {HeaderComponent} from '../header/header.component';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-forms',
|
||
|
|
imports: [
|
||
|
|
HeaderComponent
|
||
|
|
],
|
||
|
|
templateUrl: './forms.component.html',
|
||
|
|
styleUrl: './forms.component.scss'
|
||
|
|
})
|
||
|
|
export class FormsComponent {
|
||
|
|
@Input() formTitle: string = 'Form';
|
||
|
|
@Input() currentPage: string = 'forms';
|
||
|
|
}
|