25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
351 B

  1. import { Component } from '@angular/core';
  2. import { Location } from '@angular/common'
  3. @Component({
  4. selector: 'app-story-details',
  5. templateUrl: './story-details.page.html',
  6. styleUrls: ['./story-details.page.scss'],
  7. })
  8. export class StoryDetailsPage {
  9. constructor(private location: Location) { }
  10. back() {
  11. this.location.back()
  12. }
  13. }