import { BrowserModule } from '@angular/platform-browser'; | |
import { NgModule } from '@angular/core'; | |
import { FormsModule } from '@angular/forms'; | |
import { AppModule } from './app/component'; | |
import { DemoComponent } from './components/demo/demo.component'; | |
@NgModule({ | |
declarations: [ | |
AppComponent, | |
DemoComponent | |
], | |
imports: [ | |
BrowserModule, | |
FormsModule | |
], | |
providers: [], | |
bootstrap: [AppComponent] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment