You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
433 B
20 lines
433 B
import { Component, Input, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-generate-letter-pdf',
|
|
templateUrl: './generate-letter-pdf.component.html',
|
|
styleUrls: ['./generate-letter-pdf.component.scss']
|
|
})
|
|
export class GenerateLetterPdfComponent implements OnInit {
|
|
@Input()
|
|
location:string = '';
|
|
@Input()
|
|
letterDate:string='';
|
|
@Input()
|
|
title:string='';
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|