Skip to content

Instantly share code, notes, and snippets.

@kampana
Last active November 27, 2018 20:20
Show Gist options
  • Save kampana/5d6aac186f4612dfb097cabf8bd41bdd to your computer and use it in GitHub Desktop.
Save kampana/5d6aac186f4612dfb097cabf8bd41bdd to your computer and use it in GitHub Desktop.
new-module.ts
import { NewComponent } from "./new-component";
import { NewService } from "./new-service";
import { NgModule } from "my-decorators/my-decorators";
@NgModule({
declarations: [NewComponent],
providers: [NewService],
imports: []
})
export class AppModule {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment