lots.component.ts 268 B

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