After setting up my index.html file, I have the following code:
<body>
<my-app>Loading...</my-app>
</body>
In my app.component, I have linked to a templateUrl that is supposed to display login information. The HTML should include a colorful background and images along with some input tags.
ng.core.Component({
selector: 'my-app',
templateUrl: 'app/app.component.html', //linked from root
styleUrls: ['app/app.component.css'] //linked from root
})
When I load my index page, it only shows the "Loading..." message. Removing this message leaves the page blank. What am I missing to make it display the desired HTML content?