123456789101112131415 |
- import { Component, OnInit } from '@angular/core';
- @Component({
- selector: 'app-setting',
- templateUrl: './setting.page.html',
- styleUrls: ['./setting.page.scss'],
- })
- export class SettingPage implements OnInit {
- constructor() { }
- ngOnInit() {
- }
- }
|