Skip to content

Instantly share code, notes, and snippets.

@Bilkiss
Created January 7, 2022 06:44
Show Gist options
  • Save Bilkiss/66250b8c8c32a7fdbe4658320f3b759a to your computer and use it in GitHub Desktop.
Save Bilkiss/66250b8c8c32a7fdbe4658320f3b759a to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HomeComponent } from './components/home/home.component';
import { FormComponent } from './components/form/form.component';
import { ListComponent } from './components/list/list.component';
import { TotalComponent } from './components/total/total.component';
import { FormsModule } from '@angular/forms';
@NgModule({
declarations: [
AppComponent,
HomeComponent,
FormComponent,
ListComponent,
TotalComponent,
],
imports: [
BrowserModule,
AppRoutingModule,
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