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