UNPKG

ipsos-components

Version:

Material Design components for Angular

20 lines (17 loc) 633 B
/** * @license * Copyright Google LLC All Rights Reserved. * * 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 */ import {NgModule} from '@angular/core'; import {UNIQUE_SELECTION_DISPATCHER_PROVIDER} from '@angular/cdk/collections'; import {CdkAccordion} from './accordion'; import {CdkAccordionItem} from './accordion-item'; @NgModule({ exports: [CdkAccordion, CdkAccordionItem], declarations: [CdkAccordion, CdkAccordionItem], providers: [UNIQUE_SELECTION_DISPATCHER_PROVIDER], }) export class CdkAccordionModule {}