Skip to content

Instantly share code, notes, and snippets.

@mohammedzamakhan
Last active February 13, 2019 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohammedzamakhan/48f7357382324da19f6ee85b7152cad3 to your computer and use it in GitHub Desktop.
Save mohammedzamakhan/48f7357382324da19f6ee85b7152cad3 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { LoginModalComponent } from './login-modal.component';
@NgModule({
imports: [
CommonModule
],
declarations: [LoginModalComponent],
bootstrap: [LoginModalComponent]
})
export class LoginModalModule {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment