2020-04-20 18:15:30 +02:00
|
|
|
import { Component, Input, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
2020-04-22 12:56:18 +02:00
|
|
|
selector: 'app-two-links',
|
2020-04-21 17:26:25 +02:00
|
|
|
templateUrl: './two-links.component.html',
|
|
|
|
styleUrls: ['./two-links.component.scss'],
|
2020-04-20 18:15:30 +02:00
|
|
|
})
|
|
|
|
export class TwoLinksComponent implements OnInit {
|
2020-04-21 17:26:25 +02:00
|
|
|
@Input() nextRouteConfig;
|
|
|
|
@Input() previousRouteConfig;
|
2020-04-20 18:15:30 +02:00
|
|
|
|
2020-04-21 17:26:25 +02:00
|
|
|
constructor() {}
|
2020-04-20 18:15:30 +02:00
|
|
|
|
2020-04-21 17:26:25 +02:00
|
|
|
ngOnInit(): void {}
|
2020-04-20 18:15:30 +02:00
|
|
|
}
|