mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
15 lines
360 B
TypeScript
15 lines
360 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { ServerModule } from '@angular/platform-server';
|
|
import { AppModuleShared } from './app.module.shared';
|
|
import { AppComponent } from './components/app/app.component';
|
|
|
|
@NgModule({
|
|
bootstrap: [ AppComponent ],
|
|
imports: [
|
|
ServerModule,
|
|
AppModuleShared
|
|
]
|
|
})
|
|
export class AppModule {
|
|
}
|