import {NgModule} from '@angular/core'; import {MatBottomSheetModule} from '@angular/material/bottom-sheet'; import {MatListModule} from '@angular/material/list'; import { BottomSheetOverviewExample, BottomSheetOverviewExampleSheet } from './bottom-sheet-overview/bottom-sheet-overview-example'; const EXAMPLES = [ BottomSheetOverviewExample, BottomSheetOverviewExampleSheet, ]; @NgModule({ imports: [ MatBottomSheetModule, MatListModule, ], declarations: EXAMPLES, exports: EXAMPLES, entryComponents: [BottomSheetOverviewExampleSheet], }) export class BottomSheetExamplesModule { }