inspec/www/tutorial/app/app.module.ts
2016-09-13 18:38:04 -04:00

13 lines
372 B
TypeScript

// /<reference path="../node_modules/angular2/typings/browser.d.ts"/>
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 { }