Milo Lin | 26b2cbb | 2022-03-26 17:35:20 -0700 | [diff] [blame] | 1 | import {CommonModule} from '@angular/common'; |
2 | import {NgModule} from '@angular/core'; | ||||
3 | import {FormsModule} from '@angular/forms'; | ||||
4 | |||||
5 | import {ShiftsComponent} from './shift_schedule.component'; | ||||
6 | |||||
7 | @NgModule({ | ||||
8 | declarations: [ShiftsComponent], | ||||
9 | exports: [ShiftsComponent], | ||||
10 | imports: [CommonModule, FormsModule], | ||||
11 | }) | ||||
12 | export class ShiftScheduleModule {} |