I know there are a few different answers out there that are similar, but I haven't found something exactly what I'm looking for.
See below.
app.component.html
<div id="main">
<div id="sidepanel">
<!-- update here -->
</div>
<div id="content">
<router-outlet></router-outlet>
</div>
</div>
The goal is that I'd like for a child page component (loaded by the router) to update the content in the side panel.
I know I could create a service, but I'd like to add HTML to the parent component directly. I guess I'm looking for something like how Asp.Net MVC/Razor allows you to specify multiple content blocks for the parent template.
Is this possible?
Thanks!