I am setting up a web application and I have the following structure. I have an index.html file with the following code:
...
<body>
<app-root></app-root>
</body>
...
in the app.component.html file I have html code where I have a repeating structure, that is, menus, footer ... and in that same document I have the label where the components load me.
My problem now is that I have a Login component where I do not want to inherit the rest of the HTML code, but I want it to be a page without inheriting anything, since it is the logic and I do not want to load the menus of the rest of component that form the application.
Any solution?