funky-framadate-front/src/app/features/old-stuff/ui/two-links/two-links.component.ts

16 lines
343 B
TypeScript

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