Ishan Katpally | dad5f1a | 2022-03-23 21:06:36 -0700 | [diff] [blame] | 1 | import {CommonModule} from '@angular/common'; |
2 | import {NgModule} from '@angular/core'; | ||||
3 | import {FormsModule} from '@angular/forms'; | ||||
4 | import {ViewComponent} from './view.component'; | ||||
5 | |||||
6 | @NgModule({ | ||||
7 | declarations: [ViewComponent], | ||||
8 | exports: [ViewComponent], | ||||
9 | imports: [CommonModule, FormsModule], | ||||
10 | }) | ||||
11 | export class ViewModule {} |