funky-framadate-front/mocks/old-stuff/ui/two-links/two-links.component.ts

16 lines
343 B
TypeScript
Raw Normal View History

import { Component, Input, OnInit } from '@angular/core';
@Component({
2020-04-22 12:56:18 +02:00
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 {}
}