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