16 lines
314 B
16 lines
314 B
3 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-oil-station-info',
|
||
|
templateUrl: './oil-station-info.component.html',
|
||
|
styleUrls: ['./oil-station-info.component.scss']
|
||
|
})
|
||
|
export class OilStationInfoComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
}
|