2019-06-26 14:35:47 +02:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-root',
|
2019-11-05 17:19:33 +01:00
|
|
|
template:'<fm-app></fm-app>'
|
2019-06-26 14:35:47 +02:00
|
|
|
})
|
2019-11-04 18:47:15 +01:00
|
|
|
export class AppRootComponent {
|
2019-11-05 17:19:33 +01:00
|
|
|
title = 'FarmMaps';
|
2020-07-22 20:31:12 +02:00
|
|
|
constructor() {
|
|
|
|
|
|
|
|
window.addEventListener('online', () => console.log('came online'));
|
|
|
|
window.addEventListener('offline', () => console.log('came offline'));
|
|
|
|
}
|
2019-06-26 14:35:47 +02:00
|
|
|
}
|