ngx-admin/docs/app/pages/home/free-banner-section/free-banner-section.component.ts
Denis Strigo eb326c4753 feat(demo): free banner section (#5714)
* feat(demo): add free banner section

* feat(demo): update link to free banner

Co-authored-by: d.strigo <d.strigo@akveo.com>
2020-08-28 19:29:15 +03:00

19 lines
478 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, Input } from '@angular/core';
@Component({
selector: 'ngx-free-banner-section',
templateUrl: './free-banner-section.component.html',
styleUrls: ['./free-banner-section.component.scss'],
})
export class FreeBannerSectionComponent {
@Input() bannerImg: string;
@Input() bundleUrl: string;
}