Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
447 bytes
|
Line | |
---|
1 | import { NgModule } from '@angular/core';
|
---|
2 | import { BrowserModule } from '@angular/platform-browser';
|
---|
3 | <% if (routing) { %>
|
---|
4 | import { AppRoutingModule } from './app-routing.module';<% } %>
|
---|
5 | import { AppComponent } from './app.component';
|
---|
6 |
|
---|
7 | @NgModule({
|
---|
8 | declarations: [
|
---|
9 | AppComponent
|
---|
10 | ],
|
---|
11 | imports: [
|
---|
12 | BrowserModule<% if (routing) { %>,
|
---|
13 | AppRoutingModule<% } %>
|
---|
14 | ],
|
---|
15 | providers: [],
|
---|
16 | bootstrap: [AppComponent]
|
---|
17 | })
|
---|
18 | export class AppModule { }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.