blob: d9db281e9f245c2b076ae455e76e83b982bf68cb [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { Component, OnInit } from '@angular/core';
import { VersionInfoSandbox } from '@grid-failure-information-app/shared/components/version-info/version-info.sandbox';
@Component({
selector: 'app-version-info',
templateUrl: './version-info.component.html',
styleUrls: ['./version-info.component.css'],
})
export class VersionInfo implements OnInit {
constructor(public sandbox: VersionInfoSandbox) {}
/**
* The Version Info from sandbox
*/
ngOnInit() {
this.sandbox.setupAppVersion();
}
}