Add toast notifications

This commit is contained in:
2026-03-27 15:00:36 +04:00
parent 54e2766dc4
commit 0059d89cc3
4 changed files with 71 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import { pageTitle } from 'ember-page-title';
import Map from '#components/map';
import AppHeader from '#components/app-header';
import AppMenu from '#components/app-menu/index';
import Toast from '#components/toast';
import { service } from '@ember/service';
import { tracked } from '@glimmer/tracking';
import { action } from '@ember/object';
@@ -89,6 +90,8 @@ export default class ApplicationComponent extends Component {
<AppMenu @onClose={{this.closeAppMenu}} />
{{/if}}
<Toast />
{{outlet}}
</template>
}