Blame view
src/app/boat-list/boat-list.component.ts
287 Bytes
c666d6db6 add map graph and... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-boat-list', templateUrl: './boat-list.component.html', styleUrls: ['./boat-list.component.scss'] }) export class BoatListComponent implements OnInit { constructor() { } ngOnInit(): void { } } |