15 lines
291 B
TypeScript
15 lines
291 B
TypeScript
![]() |
import { Component } from '@angular/core';
|
||
|
import {RouterLink} from '@angular/router';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-bottom-navigation',
|
||
|
imports: [
|
||
|
RouterLink
|
||
|
],
|
||
|
templateUrl: './bottom-navigation.html',
|
||
|
styleUrl: './bottom-navigation.scss'
|
||
|
})
|
||
|
export class BottomNavigation {
|
||
|
|
||
|
}
|