mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
import Component from '@glimmer/component';
|
|
import { tracked } from '@glimmer/tracking';
|
|
import type PkiActionModel from 'vault/vault/models/pki/action';
|
|
|
|
interface Args {
|
|
model: PkiActionModel;
|
|
}
|
|
|
|
export default class PagePkiIssuerImportComponent extends Component<Args> {
|
|
@tracked title = 'Import a CA';
|
|
}
|