// Angular imports // import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; // Components // import { FbKommentarKnappComponent } from './fb-kommentar-knapp.component'; // Modules // import { TranslateModule } from '@ngx-translate/core'; // Services // // Directives // // Pipes // @NgModule({ imports: [ TranslateModule, CommonModule ], exports: [ FbKommentarKnappComponent ], declarations: [ FbKommentarKnappComponent ], entryComponents: [ FbKommentarKnappComponent ] }) export class FbKommentarKnappModule { }