mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 04:27:02 +02:00
12 lines
320 B
TypeScript
12 lines
320 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 PagePkiIssuerGenerateRootComponent extends Component<Args> {
|
|
@tracked title = 'Generate root';
|
|
}
|