auto migrate standalone components

This commit is contained in:
2025-01-05 10:26:35 +01:00
parent 8b8395fc3c
commit 54ee9a5b11
121 changed files with 947 additions and 685 deletions

View File

@@ -1,10 +1,11 @@
import {Component} from '@angular/core';
import { CardComponent } from '../../../widget-modules/components/card/card.component';
@Component({
selector: 'app-password-send',
templateUrl: './password-send.component.html',
styleUrls: ['./password-send.component.less'],
standalone: false,
selector: 'app-password-send',
templateUrl: './password-send.component.html',
styleUrls: ['./password-send.component.less'],
imports: [CardComponent],
})
export class PasswordSendComponent {
}