mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2026-05-26 04:28:05 +00:00
ac237a6ba1
Switching from single to double quotes
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-bottom-bar',
|
|
templateUrl: "./bottom-bar.component.html",
|
|
styleUrls: ["./bottom-bar.component.css"]
|
|
})
|
|
export class BottomBarComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|