Start application

This commit is contained in:
Lallois
2025-11-13 15:40:43 +01:00
commit 91876effb4
38 changed files with 9938 additions and 0 deletions

View File

View File

@@ -0,0 +1 @@
<router-outlet/>

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,14 @@
import { Component } from '@angular/core';
import {RouterOutlet} from "@angular/router";
@Component({
selector: 'app-welcome',
imports: [
RouterOutlet
],
templateUrl: './welcome.html',
styleUrl: './welcome.css'
})
export class Welcome {
}