12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { BrowserModule } from '@angular/platform-browser';
|
||
|
import {AppComponent} from './blog/app.component';
|
||
|
import {BlogEntryComponent} from './blog/blog-entry.component';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [ BrowserModule ],
|
||
|
declarations: [ AppComponent, BlogEntryComponent ],
|
||
|
bootstrap: [ AppComponent ]
|
||
|
})
|
||
|
export class AppModule { }
|