From c02a4ee69a393d531ba04dfc267887450005a1f5 Mon Sep 17 00:00:00 2001 From: twerske Date: Mon, 19 Apr 2021 12:18:07 -0700 Subject: [PATCH] codelab: add the power of @angular/cdk/a11y --- src/app/app.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 56b1702..adc74aa 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -39,6 +39,7 @@ import { NavigationComponent } from './navigation/navigation.component'; import { ShopComponent } from './shop/shop.component'; // TODO: #9. Add the power of @angular/cdk/a11y +import { A11yModule } from '@angular/cdk/a11y'; @NgModule({ declarations: [ @@ -64,6 +65,7 @@ import { ShopComponent } from './shop/shop.component'; MatSliderModule, MatToolbarModule, GoogleMapsModule, + A11yModule, ], providers: [Title], bootstrap: [AppComponent]