mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 22:21:09 +02:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class SecretListItemComponent extends Component {
|
|
@tracked showConfirmModal = false;
|
|
}
|