inspec/www/tutorial/app/app.module.ts

14 lines
372 B
TypeScript
Raw Normal View History

// /<reference path="../node_modules/angular2/typings/browser.d.ts"/>
2016-08-24 12:58:40 +00:00
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }