mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
24 lines
659 B
TypeScript
24 lines
659 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Akveo. All Rights Reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*/
|
|
|
|
import { Component } from '@angular/core';
|
|
import { NbDialogService } from '@nebular/theme';
|
|
import { DownloadFormComponent } from '../download-form/download-form.component';
|
|
|
|
@Component({
|
|
selector: 'ngx-download-admin',
|
|
templateUrl: './download-admin.component.html',
|
|
styleUrls: ['./download-admin.component.scss'],
|
|
})
|
|
export class DownloadAdminComponent {
|
|
|
|
constructor(private dialogService: NbDialogService) {
|
|
}
|
|
|
|
openDialog() {
|
|
this.dialogService.open(DownloadFormComponent);
|
|
}
|
|
}
|