import { CommonModule } from '@angular/common'; import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { MatButtonModule, MatInputModule, MatSelectModule } from '@angular/material'; import { AuthRoutingModule } from './auth-routing.module'; import { LoginComponent } from './login/login.component'; import { RegistrationComponent } from './registration/registration.component'; import { SharedModule } from '../../shared/shared.module'; @NgModule({ schemas: [CUSTOM_ELEMENTS_SCHEMA], imports: [ CommonModule, MatInputModule, MatButtonModule, MatSelectModule, FormsModule, ReactiveFormsModule, AuthRoutingModule, SharedModule ], declarations: [LoginComponent, RegistrationComponent] }) export class AuthModule { }