angular/devtools/projects/ng-devtools/src/lib/devtools-tabs/router-tree/router-tree.component.html

9 lines
261 B
HTML
Raw Normal View History

2021-02-07 13:15:42 +00:00
<div class="router-tree-wrapper">
<div class="no-routes" [hidden]="routes?.length !== 0">
<h1>There are no routes to display.</h1>
2021-02-07 13:15:42 +00:00
</div>
<svg #svgContainer class="svg-container" [hidden]="routes?.length === 0">
<g #mainGroup></g>
</svg>
2021-02-07 13:15:42 +00:00
</div>