13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
|
import {NgModule} from "@angular/core";
|
||
|
import {CommonModule} from "@angular/common";
|
||
|
import {NotificationUserComponent} from "./notification-user.component";
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [CommonModule],
|
||
|
declarations: [NotificationUserComponent],
|
||
|
exports: [NotificationUserComponent]
|
||
|
})
|
||
|
export class NotificationUserModule {
|
||
|
|
||
|
}
|