Daniel J. Summers cfaf2e84f7
Create Angular version (#1)
Convert site to Angular; also reworked contents on solution pages
2019-11-14 22:22:18 -06:00

14 lines
292 B
TypeScript

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