Unexpected value 'MatSnackBar' imported by the module 'AppModule'. Please add a @NgModule annotation
You need to import
import { MatSnackBarModule } from "@angular/material";
and add it under imports
@NgModule({
imports: [
MatSnackBarModule,
],
providers: [
],
})
refer the issue