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

15 lines
299 B
TypeScript

import { App } from '../application.types'
/** An inteface implemented by all app detail components */
export class AppDetailComponent {
/** The app to be displayed */
app: App
/** The page title based on this app */
get pageTitle () {
return `${this.app.name} « Solutions`
}
}