marco/app/templates/application.gjs
Râu Cao caa48537bc
Some checks failed
CI / Lint (push) Has been cancelled
CI / Test (push) Has been cancelled
Add remoteStorage.js and Places module
2026-01-15 20:54:31 +07:00

24 lines
511 B
Plaintext

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