Spaces:
Runtime error
Runtime error
| import { NgModule } from '@angular/core'; | |
| import { BrowserModule } from '@angular/platform-browser'; | |
| import { AppRoutingModule } from './app-routing.module'; | |
| import { AppComponent } from './app.component'; | |
| import {UploadComponent} from "./gym-setup/upload.component"; | |
| import {ReactiveFormsModule} from "@angular/forms"; | |
| ({ | |
| declarations: [ | |
| AppComponent, | |
| UploadComponent | |
| ], | |
| imports: [ | |
| BrowserModule, | |
| AppRoutingModule, | |
| ReactiveFormsModule | |
| ], | |
| providers: [], | |
| bootstrap: [AppComponent] | |
| }) | |
| export class AppModule { } | |