example-module.ts (material2-7.3.4) | : | example-module.ts (material2-7.3.5) | ||
---|---|---|---|---|
/** | /** | |||
* @license | * @license | |||
* 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 {MatExpansionModule} from '@angular/material'; | ||||
import {NgModule} from '@angular/core'; | import {NgModule} from '@angular/core'; | |||
import {MatExpansionModule} from '@angular/material'; | ||||
import {ExampleModule as ExampleDataModule} from '@angular/material-examples'; | ||||
import {Example} from './example'; | ||||
import {ExampleList} from './example-list'; | import {ExampleList} from './example-list'; | |||
import {Example} from './example'; | ||||
@NgModule({ | @NgModule({ | |||
imports: [MatExpansionModule, CommonModule], | imports: [CommonModule, ExampleDataModule, MatExpansionModule], | |||
declarations: [Example, ExampleList], | declarations: [Example, ExampleList], | |||
exports: [Example, ExampleList] | exports: [Example, ExampleList] | |||
}) | }) | |||
export class ExamplePageModule {} | export class ExampleModule { | |||
} | ||||
End of changes. 5 change blocks. | ||||
3 lines changed or deleted | 4 lines changed or added |