"copy" UI related things from chrome

This commit is contained in:
DEV Sam Hayes
2025-02-04 20:19:30 +01:00
parent 601ac8cd49
commit b20faf2359
100 changed files with 3514 additions and 362 deletions

View File

@@ -0,0 +1,12 @@
import { Component, inject } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-vault-create-home',
imports: [],
templateUrl: './home.component.html',
styleUrl: './home.component.scss',
})
export class HomeComponent {
readonly router = inject(Router);
}