mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-23 10:50:13 +01:00
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>
This commit is contained in:
parent
a7d1716fc6
commit
fa5a5e3bb4
10 changed files with 78 additions and 2 deletions
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* @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;
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue