|
- import {Component} from '@angular/core';
- import {Location} from "@angular/common";
-
- @Component({
- selector: 'app-two-column',
- templateUrl: './two-column.component.html',
- styleUrl: './two-column.component.scss'
- })
- export class TwoColumnComponent {
-
- constructor(private _location: Location) {
- }
-
- goBack() {
- this._location.back();
- }
-
- }
|