Last active
February 13, 2019 21:37
-
-
Save mohammedzamakhan/48f7357382324da19f6ee85b7152cad3 to your computer and use it in GitHub Desktop.
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 { 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