list-demo-module.ts (material2-7.3.5) | : | list-demo-module.ts (material2-7.3.6) | ||
---|---|---|---|---|
skipping to change at line 13 | skipping to change at line 13 | |||
* Copyright Google LLC All Rights Reserved. | * Copyright Google LLC All Rights Reserved. | |||
* | * | |||
* Use of this source code is governed by an MIT-style license that can be | * Use of this source code is governed by an MIT-style license that can be | |||
* found in the LICENSE file at https://angular.io/license | * found in the LICENSE file at https://angular.io/license | |||
*/ | */ | |||
import {CommonModule} from '@angular/common'; | import {CommonModule} from '@angular/common'; | |||
import {NgModule} from '@angular/core'; | import {NgModule} from '@angular/core'; | |||
import {FormsModule} from '@angular/forms'; | import {FormsModule} from '@angular/forms'; | |||
import {MatButtonModule, MatCheckboxModule, MatIconModule, MatListModule} from ' @angular/material'; | import {MatButtonModule, MatCheckboxModule, MatIconModule, MatListModule} from ' @angular/material'; | |||
import {RouterModule} from '@angular/router'; | ||||
import {ListDemo} from './list-demo'; | import {ListDemo} from './list-demo'; | |||
@NgModule({ | @NgModule({ | |||
imports: [ | imports: [ | |||
CommonModule, | CommonModule, | |||
FormsModule, | FormsModule, | |||
MatButtonModule, | MatButtonModule, | |||
MatCheckboxModule, | MatCheckboxModule, | |||
MatIconModule, | MatIconModule, | |||
MatListModule, | MatListModule, | |||
RouterModule.forChild([{path: '', component: ListDemo}]), | ||||
], | ], | |||
declarations: [ListDemo], | declarations: [ListDemo], | |||
}) | }) | |||
export class ListDemoModule { | export class ListDemoModule { | |||
} | } | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 2 lines changed or added |