initial commit

This commit is contained in:
2025-02-18 22:36:53 +01:00
commit 4d4c8a362a
22 changed files with 15271 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.scss'
})
export class AppComponent {
title = 'PayPoint';
}