source: trip-planner-front/node_modules/@schematics/angular/universal/files/src/app/__rootModuleFileName__.template@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 329 bytes
Line 
1import { NgModule } from '@angular/core';
2import { ServerModule } from '@angular/platform-server';
3
4import { AppModule } from './app.module';
5import { AppComponent } from './app.component';
6
7@NgModule({
8 imports: [
9 AppModule,
10 ServerModule,
11 ],
12 bootstrap: [AppComponent],
13})
14export class <%= rootModuleClassName %> {}
Note: See TracBrowser for help on using the repository browser.