Implement createSession and store it in localStorage

This commit is contained in:
2025-01-31 08:27:13 +01:00
parent a433daf5ef
commit 8d4b47a9cc
19 changed files with 108 additions and 92 deletions

View File

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
standalone: false,
styleUrl: './app.component.css'
})
export class AppComponent {
title = 'swisssign-challenge-ui';
}