Files
trouvetonprofile/src/app/shared/components/dialog-box/dialog-box.component.ts
styve Lioumba 25739d1c73
All checks were successful
Build Check / build (push) Successful in 2m12s
Build Check / build (pull_request) Successful in 2m22s
feat : #8 inverser avec #7 , suppression d'un projet
2025-12-24 10:15:47 +01:00

14 lines
355 B
TypeScript

import { Component } from '@angular/core';
import { ActionType } from '@app/domain/action-type.util';
@Component({
selector: 'app-dialog-box',
standalone: true,
imports: [],
templateUrl: './dialog-box.component.html',
styleUrl: './dialog-box.component.scss',
})
export class DialogBoxComponent {
protected readonly ActionType = ActionType;
}