aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.module.ts.template
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.module.ts.template')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.module.ts.template18
1 files changed, 0 insertions, 18 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.module.ts.template b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.module.ts.template
deleted file mode 100644
index 88ee10b8..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.module.ts.template
+++ /dev/null
@@ -1,18 +0,0 @@
-import { NgModule } from '@angular/core';
-import { BrowserModule } from '@angular/platform-browser';
-<% if (routing) { %>
-import { AppRoutingModule } from './app-routing.module';<% } %>
-import { AppComponent } from './app.component';
-
-@NgModule({
- declarations: [
- AppComponent
- ],
- imports: [
- BrowserModule<% if (routing) { %>,
- AppRoutingModule<% } %>
- ],
- providers: [],
- bootstrap: [AppComponent]
-})
-export class AppModule { }