This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
FoodLoop-Web/src/app/pages/500.component.ts

17 lines
277 B
TypeScript
Raw Normal View History

import { Component } from '@angular/core';
import { Location } from '@angular/common';
@Component({
templateUrl: '500.component.html'
})
export class P500Component {
constructor(
private location: Location,
) { }
goBack(): void {
this.location.back();
}
}