I am stuck in a situation here. I am getting an error like this.
compiler.es5.js:1694 Uncaught Error: Unexpected value \'LoginComponent\' declared by the modul
You have a typo in the import in your LoginComponent's file
LoginComponent
import { Component } from '@angular/Core';
It's lowercase c, not uppercase
c
import { Component } from '@angular/core';