funky-framadate-front/src/app/core/components/sibebar/navigation/navigation.component.ts

13 lines
282 B
TypeScript
Raw Normal View History

2020-05-01 19:10:17 +02:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-navigation',
templateUrl: './navigation.component.html',
styleUrls: ['./navigation.component.scss'],
})
export class NavigationComponent implements OnInit {
2020-05-12 19:16:23 +02:00
constructor() {}
2020-05-01 19:10:17 +02:00
2020-05-12 19:16:23 +02:00
ngOnInit(): void {}
2020-05-01 19:10:17 +02:00
}