14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
import { Component, OnInit } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-all-solutions-link',
|
|
template: `<p><br><a routerLink="/solutions">« Back to All Solutions</a></p>`
|
|
})
|
|
export class AllSolutionsLinkComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() { }
|
|
|
|
}
|