First implementation of Tauri

This commit is contained in:
Manuel 2024-05-15 10:37:32 +02:00
parent 9db004472a
commit 4ab83071bc
58 changed files with 16247 additions and 46 deletions

View file

@ -0,0 +1,20 @@
import { Component } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-home',
standalone: true,
imports: [],
templateUrl: './home.component.html',
styleUrl: './home.component.css'
})
export class HomeComponent {
constructor(private router: Router) {}
redirectToSender() {
this.router.navigate(['/sender'])
}
redirectToReceiver() {
this.router.navigate(['/receiver'])
}
}