128.1. Creating notification module - ng generate module (#16 Section 18: Notification)

This commit is contained in:
Art
2021-09-17 13:47:22 +03:00
parent 7aedfe5ea7
commit 174326ab3e
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
@NgModule({
declarations: [],
imports: [
CommonModule
]
})
export class NotificationModule { }