I have a requirement where I have to load the root component in angular2 dynamically/using setTimeout(). Is is possible and how. e.g.
<body>
<hello-world>Loading...</hello-world>
</body>
I want the 'hello-world' append after few second of page load. As I can't have custom component in the page load.
A plnkr will be helpful.