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 { UploaderComponent } from './uploader/uploader.component'; | |
| ({ | |
| declarations: [ | |
| AppComponent, | |
| UploaderComponent | |
| ], | |
| imports: [ | |
| BrowserModule, | |
| AppRoutingModule | |
| ], | |
| providers: [], | |
| bootstrap: [AppComponent] | |
| }) | |
| export class AppModule { } | |