accidents-backend / Accident.Web /src /app /shell /shell.component.html
ChristopherJKoen's picture
Deploy backend from GitLab 9eda6d69
bed1116 verified
Raw
History Blame Contribute Delete
447 Bytes
<div class="shell">
<nav class="tab-bar">
<a routerLink="mapView" routerLinkActive="active" class="tab">Map View</a>
<a routerLink="mapAnalytics" routerLinkActive="active" class="tab">Map Analytics</a>
<a routerLink="report" routerLinkActive="active" class="tab">Report Preview</a>
<button type="button" class="logout" (click)="logOut()">Log out</button>
</nav>
<main class="content">
<router-outlet />
</main>
</div>