deleted notifs components
This commit is contained in:
@@ -1,24 +1,24 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {Component} from '@angular/core';
|
||||
import {UserInfo} from "../../interfaces/user.interface";
|
||||
import {ProfilForm} from "../profil-form/profil-form";
|
||||
import {ModalNav} from "../modal-nav/modal-nav";
|
||||
|
||||
@Component({
|
||||
selector: 'app-profil',
|
||||
selector: 'app-profil',
|
||||
imports: [
|
||||
ProfilForm,
|
||||
ModalNav
|
||||
],
|
||||
templateUrl: './profil.html',
|
||||
styleUrl: './profil.css',
|
||||
templateUrl: './profil.html',
|
||||
styleUrl: './profil.css',
|
||||
})
|
||||
export class Profil {
|
||||
data: UserInfo =
|
||||
{
|
||||
name: 'Mathys Sanchez Vendé',
|
||||
email: 'mathys.sanchez@vende.fr',
|
||||
fonction: 'admin',
|
||||
};
|
||||
{
|
||||
name: 'Mathys Sanchez Vendé',
|
||||
email: 'mathys.sanchez@vende.fr',
|
||||
fonction: 'admin',
|
||||
};
|
||||
|
||||
getInitial(name: string): string {
|
||||
if (!name || name.trim() === '') return '?';
|
||||
|
||||
Reference in New Issue
Block a user