Initial Angular Commit

This commit is contained in:
eneller
2024-11-27 20:15:11 +01:00
parent 0c835d3f7c
commit 7f5978b226
25 changed files with 15938 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.less'
})
export class AppComponent {
title = 'vb';
}