import { Component } from '@angular/core'; import { CommonModule } from '@angular/common'; @Component({ selector: 'app-bottom-bar', standalone: true, imports: [CommonModule], templateUrl: './bottom-bar.component.html', styleUrl: './bottom-bar.component.scss' }) export class BottomBarComponent { }