Skip to content

Instantly share code, notes, and snippets.

@ShilpaLalwani
Last active April 27, 2020 14:29
Show Gist options
  • Save ShilpaLalwani/cef09384532e658714add71a835cb224 to your computer and use it in GitHub Desktop.
Save ShilpaLalwani/cef09384532e658714add71a835cb224 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { ProfileHostDirective } from './profile/profile-host.directive';
import { ProfileComponent } from './profile/profile.component';
@NgModule({
declarations: [AppComponent, ProfileHostDirective, ProfileComponent],
imports: [BrowserModule],
bootstrap: [AppComponent]})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment