1
0
Fork 0

Init: Angular

This commit is contained in:
Aroy-Art 2025-04-11 09:27:24 +02:00
parent b626e6804d
commit ac458f5247
Signed by: Aroy
GPG key ID: 583642324A1D2070
22 changed files with 15228 additions and 127 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 = 'Angular-DotIO';
}