I've been facing challenges while trying to import an external component from a URL into a new Angular2 application. The issue I keep encountering is with the typescript failing to compile and run the application smoothly.
Here is the specific import I'm attempting:
import { Component } from '@angular/core';
import { ListComponent } from 'enter.remote.url.here.com';
Is there a workaround or a method to successfully load an external component into another Angular2 application?
Thank you