| 123456789101112131415161718 |
- import { BrowserModule } from '@angular/platform-browser';
- import { NgModule } from '@angular/core';
- <% 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 { }
|