projecte_ionic/node_modules/@schematics/angular/application/other-files/app.module.ts.template
2022-02-09 18:30:03 +01:00

19 lines
447 B
Plaintext
Executable file

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 { }