2018-12-26 15:17:57 +03:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Akveo. All Rights Reserved.
|
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-05 18:53:21 +03:00
|
|
|
import { Component, Input } from '@angular/core';
|
|
|
|
|
import { Descriptions } from '../../../@core/data/service/descriptions.service';
|
2018-12-26 15:17:57 +03:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'ngx-landing-description-section',
|
|
|
|
|
templateUrl: './description-section.component.html',
|
|
|
|
|
styleUrls: ['./description-section.component.scss'],
|
|
|
|
|
})
|
2019-02-05 18:53:21 +03:00
|
|
|
export class DescriptionSectionComponent {
|
|
|
|
|
@Input() descriptions: Descriptions[];
|
2018-12-26 15:17:57 +03:00
|
|
|
}
|