added search component from all pages
This commit is contained in:
@@ -1,7 +1,13 @@
|
||||
<app-modal-button type="primary" name="Ajouter un utilisateur">
|
||||
<app-profil-form></app-profil-form>
|
||||
</app-modal-button>
|
||||
<div class="flex mt-2">
|
||||
<app-modal-button type="primary" name="Ajouter un utilisateur">
|
||||
<app-profil-form></app-profil-form>
|
||||
</app-modal-button>
|
||||
|
||||
<div class="mt-4">
|
||||
<div class="ml-95 w-150">
|
||||
<app-search></app-search>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-1">
|
||||
<app-user-table></app-user-table>
|
||||
</div>
|
||||
|
||||
@@ -2,13 +2,15 @@ import { Component } from '@angular/core';
|
||||
import {UserTable} from "../../components/user-table/user-table";
|
||||
import {ModalButton} from "../../components/modal-button/modal-button";
|
||||
import {ProfilForm} from "../../components/profil-form/profil-form";
|
||||
import {Search} from "../../components/search/search";
|
||||
|
||||
@Component({
|
||||
selector: 'app-user',
|
||||
imports: [
|
||||
UserTable,
|
||||
ModalButton,
|
||||
ProfilForm
|
||||
ProfilForm,
|
||||
Search
|
||||
],
|
||||
templateUrl: './user.html',
|
||||
styleUrl: './user.css',
|
||||
|
||||
Reference in New Issue
Block a user