I am developing an angular2 aap with MVC5. I have register.ts file and the error detail as given below. import {Component, View} from ' angular2/angular2 ' ; @ Component({ selector: 'register' }) @ View({ templateUrl: '../scripts/register.html' }) export class register { } My bootstrap.ts file as given below import {bootstrap} from 'angular2/angular2' ; import {register} from '/components/register' ; bootstrap(login); The solution as given below. It just changed to module to as given below import {Component, View} from ' angular2/core ' and also changed bootstrap to as given below import {bootstrap} from 'angular2/platform/brows...
Angular, React, JavaScript, Java, PHP, SQL, C#, Vue, NodeJs, TypeScript and Interview Questions Answers