mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 18:05:42 +03:00
18 lines
361 B
JavaScript
18 lines
361 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class Alert extends Component {
|
|
@tracked shouldShowAlert = true;
|
|
|
|
@action
|
|
dismissAlert() {
|
|
this.shouldShowAlert = false;
|
|
}
|
|
}
|