inspec/www/tutorial/app/app.module.ts
Victoria Jeffrey 1ea965080a initial commit
2016-09-01 22:33:41 +01:00

11 lines
301 B
TypeScript

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 { }