fix(challenge 48): challenge naming

This commit is contained in:
Sven Brodny
2024-04-18 14:55:53 +02:00
parent a691a7e2f9
commit 97026895f0
26 changed files with 21 additions and 21 deletions

View File

@@ -0,0 +1,20 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { NavComponent } from './ui/nav.component';
@Component({
standalone: true,
imports: [RouterOutlet, NavComponent],
selector: 'app-root',
template: `
<div class="h-screen bg-gray-50">
<app-nav
class="mx-auto flex w-full items-center justify-center pb-2 pt-8" />
<main class="px-4 py-16 sm:px-6 lg:px-8">
<router-outlet></router-outlet>
</main>
</div>
`,
})
export class AppComponent {}