Standalone app - auto migrate
This commit is contained in:
@@ -1,10 +1,18 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { NotificationsService } from 'src/app/services/notifications.service';
|
||||
import { MatCardModule } from '@angular/material/card';
|
||||
import { NgFor, NgIf } from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'app-notifications',
|
||||
templateUrl: './notifications.component.html',
|
||||
styleUrls: ['./notifications.component.scss'],
|
||||
selector: 'app-notifications',
|
||||
templateUrl: './notifications.component.html',
|
||||
styleUrls: ['./notifications.component.scss'],
|
||||
standalone: true,
|
||||
imports: [
|
||||
NgFor,
|
||||
MatCardModule,
|
||||
NgIf,
|
||||
],
|
||||
})
|
||||
export class NotificationsComponent {
|
||||
constructor(
|
||||
|
||||
Reference in New Issue
Block a user