angular-docs-cn/public/docs/_examples/homepage-hello-world/ts/app/app.module.ts

17 lines
389 B
TypeScript

// #docregion
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { HelloWorldComponent } from './hello_world';
@NgModule({
imports: [
BrowserModule,
FormsModule
],
declarations: [ HelloWorldComponent ],
bootstrap: [ HelloWorldComponent ]
})
export class AppModule { }