Add remoteStorage.js and Places module
Some checks failed
CI / Lint (push) Has been cancelled
CI / Test (push) Has been cancelled

This commit is contained in:
2026-01-15 20:45:07 +07:00
parent 283b73e0e6
commit caa48537bc
8 changed files with 127 additions and 22 deletions

View File

@@ -1,10 +1,23 @@
import Component from '@glimmer/component';
import { pageTitle } from 'ember-page-title';
import Map from '#components/map';
import { service } from '@ember/service';
<template>
{{pageTitle "M/\RCO"}}
export default class ApplicationComponent extends Component {
@service storage;
<Map />
constructor() {
super(...arguments);
console.log('Application component constructed');
// Access the service to ensure it is instantiated
this.storage;
}
{{outlet}}
</template>
<template>
{{pageTitle "M/\RCO"}}
<Map />
{{outlet}}
</template>
}