forked from tykayn/funky-framadate-front
16 lines
370 B
TypeScript
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 {}
|
||
|
}
|