import { Component, OnInit, Output, Input, EventEmitter } from '@angular/core';

const id: string = 'bs4-table-details';

@Component({
    selector: id,
    template: require(`./${id}.component.html`),
    styles: [require(`./${id}.component.scss`)]
})
export class Bs4TableDetails implements OnInit {

    @Output() goBack: EventEmitter<boolean> = new EventEmitter<boolean>();
    @Input() backButton: string = 'Go back';

    constructor() { }

    ngOnInit() {

    }


}
