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