14 lines
233 B
TypeScript
14 lines
233 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'of-download',
|
||
|
templateUrl: './download.component.html',
|
||
|
})
|
||
|
export class DownloadComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
}
|