Failed to compile.
src/app/app.module.ts:4:10 - error TS2305: Module '"./events-app.component"' has no exported member 'EventsAppComponent'.
4 import { EventsAppComponent } from './events-app.component'; ~~~~~~~~~~~~~~~~~~
Failed to compile.
src/app/app.module.ts:4:10 - error TS2305: Module '"./events-app.component"' has no exported member 'EventsAppComponent'.
4 import { EventsAppComponent } from './events-app.component'; ~~~~~~~~~~~~~~~~~~
This question is answered here Duplicate question
Basically you will have to export your component class for it to be used.
export class EventsAppComponent {}
If this is not what you are looking for please add some more details to this question.