added ng zoro

This commit is contained in:
2025-11-07 12:21:48 +01:00
parent 8ac490ded2
commit 9625cf7107
14 changed files with 515 additions and 348 deletions

View File

View File

@@ -0,0 +1 @@
<p>welcome works!</p>

View File

@@ -0,0 +1,6 @@
import { Routes } from '@angular/router';
import { Welcome } from './welcome';
export const WELCOME_ROUTES: Routes = [
{ path: '', component: Welcome },
];

View File

@@ -0,0 +1,9 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-welcome',
imports: [],
templateUrl: './welcome.html',
styleUrl: './welcome.css'
})
export class Welcome {}