19 lines
353 B
TypeScript
19 lines
353 B
TypeScript
import {NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
import {ShowPublisherComponent} from "./showPublisher.component";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule
|
|
],
|
|
declarations: [
|
|
ShowPublisherComponent
|
|
],
|
|
providers:[
|
|
],
|
|
exports: [
|
|
ShowPublisherComponent
|
|
]
|
|
})
|
|
export class ShowPublisherModule { }
|