import {Component, Input} from '@angular/core';
@Component({
selector: 'ngx-integration-description',
template: `
For why do you need a backend admin dashboard?
To save up to 300 hours on development. To use backend as ready to use examples.
Features
{{buttonText}}
`,
styleUrls: ['./integration-description.component.scss'],
})
export class IntegrationDescriptionComponent {
@Input() features: string[];
@Input() url: string;
@Input() buttonText: string;
}