Last active
October 21, 2021 14:55
-
-
Save NyaGarcia/0bbcd2ae3c871cbb6fadbf8c1d76815c to your computer and use it in GitHub Desktop.
Importing module into AuthModule
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AuthRoutingModule } from './auth-routing.module'; | |
import { CommonModule } from '@angular/common'; | |
import { LoginFormComponent } from './components/login-form/login-form.component'; | |
import { LoginPageComponent } from './pages/login-page/login-page.component'; | |
import { MatButtonModule } from '@angular/material/button'; | |
import { MatFormFieldModule } from '@angular/material/form-field'; | |
import { MatInputModule } from '@angular/material/input'; | |
import { NgModule } from '@angular/core'; | |
import { ReactiveFormsModule } from '@angular/forms'; | |
@NgModule({ | |
declarations: [LoginPageComponent, LoginFormComponent], | |
imports: [ | |
CommonModule, | |
AuthRoutingModule, | |
ReactiveFormsModule, | |
MatInputModule, | |
MatFormFieldModule, | |
MatButtonModule, | |
], | |
}) | |
export class AuthModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment