Skip to content

Instantly share code, notes, and snippets.

@blakazulu
Created November 16, 2020 09:11
Show Gist options
  • Save blakazulu/45ce36e8e9b58338e88b623ea127f608 to your computer and use it in GitHub Desktop.
Save blakazulu/45ce36e8e9b58338e88b623ea127f608 to your computer and use it in GitHub Desktop.
medium-better-login-page-demo
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatInputModule } from "@angular/material/input";
import { FormsModule } from '@angular/forms';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
FormsModule,
MatInputModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment