Skip to content

Instantly share code, notes, and snippets.

@sajeetharan
Created February 6, 2019 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sajeetharan/c3e872abd22fe0b43e7b8ae47289d018 to your computer and use it in GitHub Desktop.
Save sajeetharan/c3e872abd22fe0b43e7b8ae47289d018 to your computer and use it in GitHub Desktop.
sajeetharan.com_angular_interview
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import {FormsModule} from '@angular/forms';
import { UserComponent } from './components/user/user.component';
import { StateService } from './services/state.service';
@NgModule({
declarations: [
AppComponent,
UserComponent
],
imports: [
BrowserModule,
FormsModule
],
providers: [ StateService ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment