focus-origin-demo-module.ts (material2-7.3.5) | : | focus-origin-demo-module.ts (material2-7.3.6) | ||
---|---|---|---|---|
/** | /** | |||
* @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 {A11yModule} from '@angular/cdk/a11y'; | import {A11yModule} from '@angular/cdk/a11y'; | |||
import {NgModule} from '@angular/core'; | import {NgModule} from '@angular/core'; | |||
import {RouterModule} from '@angular/router'; | ||||
import {FocusOriginDemo} from './focus-origin-demo'; | import {FocusOriginDemo} from './focus-origin-demo'; | |||
@NgModule({ | @NgModule({ | |||
imports: [ | imports: [ | |||
A11yModule, | A11yModule, | |||
RouterModule.forChild([{path: '', component: FocusOriginDemo}]), | ||||
], | ], | |||
declarations: [FocusOriginDemo], | declarations: [FocusOriginDemo], | |||
}) | }) | |||
export class FocusOriginDemoModule { | export class FocusOriginDemoModule { | |||
} | } | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 2 lines changed or added |