Module has no exported member error in angular module

Your classes should be exported using the export keyword. For eg:

export class UploadComponent {
   ...
}

This needs to be done for the UploadService as well. The module will not be able to import it otherwise.

Leave a Comment