123456789101112131415 |
- import { Component, OnInit } from '@angular/core';
- @Component({
- selector: 'app-view-all',
- templateUrl: './view-all.component.html',
- styleUrls: ['./view-all.component.scss'],
- standalone: true,
- })
- export class ViewAllComponent implements OnInit {
- constructor() { }
- ngOnInit() {}
- }
|