I started developing a new application in AngularJS 2 and I got stuck planning it.
I got a bootstrap template with a sidebar menu and a content div.
Sample of HTML:
<html>
<head>
...
</head>
<body>
<ul class="sidebar">
<li><a [routerLink]="Test">Test</a></li>
</ul>
<app-selector>...</app-selector>
</body>
</html>
How can I build this structure, using routerLink outside an Angular component? Should I configure these RouteConfigs in main component (which bootstraps my main component)?