I'm in the process of building a Single Page Application. I've decided to create separate components for Navigation, Section, and Footer. The Navigation and Footer should be displayed on every page, while only the Section content changes when navigating between pages. However, I have encountered an issue where only the Navigation component is displaying, but the Footer component is not visible. Can anyone please assist me with this problem?
<body>
<div class="container">
<navigation></navigation>
<ui-view></ui-view>
<footer></footer>
</div>
For reference, here is the Plunker link to my project: