Good morning,
I've been learning Angular 5 and despite of all the new stuff, there is something that I can't realize how to be done yet.
In the past I studied AngularJS, so I'm triying to understand Angular 5 and seeing how the framework has changed,
Currently I'm dealing with a simple thing that I could do in Angular JS, multiple controllers per page, something like this.
<div class="widget" ng-controller="widgetController">
<p>Stuff here</p>
</div>
<div class="menu" ng-controller="menuController">
<p>Other stuff here</p>
</div>
But I don't know how to do it in Angular 5 because so far I only find examples and code relatet to a component-per page.
Maybe it is a very simple answer, but I will really apreciate any help.