mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import {CommonModule} from '@angular/common';
|
|
import {NgModule} from '@angular/core';
|
|
import {PostModule} from 'post';
|
|
|
|
import {AppComponent} from './app.component';
|
|
import {FooComponent} from './foo.component';
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, PostModule],
|
|
declarations: [AppComponent, FooComponent],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|