Created
January 7, 2022 06:44
-
-
Save Bilkiss/66250b8c8c32a7fdbe4658320f3b759a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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