Update to Angular v17 syntax

This commit is contained in:
Geomitron
2023-12-25 11:30:56 -06:00
parent 0abf801c7e
commit c7a4ce2b47
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
@if (settingsLoaded) {
<div class="flex flex-col h-screen">
<app-toolbar></app-toolbar>
<router-outlet></router-outlet>
<app-toolbar />
<router-outlet />
</div>
}

View File

@@ -7,6 +7,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body class="scrollbar">
<app-root></app-root>
<app-root />
</body>
</html>