owner-diary.page.ts 295 B

12345678910111213141516
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-owner-diary',
  4. templateUrl: './owner-diary.page.html',
  5. styleUrls: ['./owner-diary.page.scss'],
  6. standalone:false,
  7. })
  8. export class OwnerDiaryPage implements OnInit {
  9. constructor() { }
  10. ngOnInit() {
  11. }
  12. }