funky-framadate-front/src/app/ui/navigation/two-links/two-links.component.ts

16 lines
370 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'framadate-two-links',
templateUrl: './two-links.component.html',
styleUrls: ['./two-links.component.scss'],
})
export class TwoLinksComponent implements OnInit {
@Input() nextRouteConfig;
@Input() previousRouteConfig;
constructor() {}
ngOnInit(): void {}
}