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:
Denis Strigo 2020-06-18 11:32:27 +03:00 committed by GitHub
parent a7d1716fc6
commit fa5a5e3bb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 78 additions and 2 deletions

View file

@ -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;
}