mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
12 lines
280 B
JavaScript
12 lines
280 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 SecretListSshRoleItemComponent extends Component {
|
|
@tracked showConfirmModal = false;
|
|
}
|