blob: 881c6db517fa4bd17f54e686fb1488dc47ddbde4 [file] [log] [blame]
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {FormsModule} from '@angular/forms';
import {Notes} from './notes.component';
@NgModule({
declarations: [Notes],
exports: [Notes],
imports: [CommonModule, FormsModule],
})
export class NotesModule {}