view-all.component.ts 296 B

123456789101112131415
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-view-all',
  4. templateUrl: './view-all.component.html',
  5. styleUrls: ['./view-all.component.scss'],
  6. standalone: true,
  7. })
  8. export class ViewAllComponent implements OnInit {
  9. constructor() { }
  10. ngOnInit() {}
  11. }