Alex Perry | bb90105 | 2022-03-23 19:46:15 -0700 | [diff] [blame] | 1 | import {NgModule} from '@angular/core'; |
2 | import {CommonModule} from '@angular/common'; | ||||
3 | import {FormsModule} from '@angular/forms'; | ||||
4 | |||||
5 | import {Notes} from './notes.component'; | ||||
6 | |||||
7 | @NgModule({ | ||||
8 | declarations: [Notes], | ||||
9 | exports: [Notes], | ||||
10 | imports: [CommonModule, FormsModule], | ||||
11 | }) | ||||
Philipp Schrader | 817cce3 | 2022-03-26 15:00:00 -0700 | [diff] [blame] | 12 | export class NotesModule {} |