You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
651 B
26 lines
651 B
import { Component } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { MatCardModule } from '@angular/material/card';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
import { UsersService } from '../../services/users.service';
|
|
|
|
@Component({
|
|
selector: 'app-user',
|
|
standalone: true,
|
|
imports: [
|
|
CommonModule,
|
|
MatCardModule,
|
|
MatIconModule,
|
|
MatButtonModule
|
|
],
|
|
templateUrl: './user.component.html',
|
|
styleUrl: './user.component.scss'
|
|
})
|
|
export class UserComponent {
|
|
constructor(
|
|
public usersService: UsersService,
|
|
) {}
|
|
}
|
|
|