i had created a application and in my master page i have initialize my app like this
<my-app>
Loading...
</my-app>
here is the way im loading my component
@Component({
selector: 'my-app',
templateUrl: '/App/my.Component.html'
})
in my component i have only HTML template
when my page is load i can visible the "Loading..." text before loading the component
how can i speed up the component loading time ?