/* * Squidex Headless CMS * * @license * Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved. */ import { Location } from '@angular/common'; import { Component } from '@angular/core'; @Component({ selector: 'sqx-forbidden-page', template: `
Back to previous page.
` }) export class ForbiddenPageComponent { constructor( private readonly location: Location ) { } public back() { this.location.back(); } }