import { NgModule } from '@angular/core'; import { IgxSnackbarComponent } from './snackbar.component'; /** * @hidden * IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components */ @NgModule({ imports: [ IgxSnackbarComponent ], exports: [ IgxSnackbarComponent ] }) export class IgxSnackbarModule { }