chore: initialize Angular project with basic files

This commit is contained in:
Jan K9f 2025-01-19 19:27:41 +01:00
commit 45d8833be7
Signed by: jank
GPG key ID: 50620ADD22CD330B
22 changed files with 14063 additions and 0 deletions

12
src/app/app.component.ts Normal file
View file

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
imports: [RouterOutlet],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
export class AppComponent {
title = 'jklink';
}