18 lines
258 B
Plaintext
18 lines
258 B
Plaintext
|
import { Component, OnInit, NgZone } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-main',
|
||
|
templateUrl: './main.page.html',
|
||
|
styleUrls: ['./main.page.scss'],
|
||
|
})
|
||
|
export class MainPage implements OnInit {
|
||
|
|
||
|
constructor() {
|
||
|
|
||
|
}
|
||
|
|
||
|
ngOnInit() {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|