Can delete the VM from the WebUI

This commit is contained in:
2023-10-13 18:39:34 +02:00
parent 6a3cf2e5c8
commit 3c00c23205
7 changed files with 247 additions and 12 deletions

View File

@ -0,0 +1,8 @@
import { VMInfo } from "../../api/VMApi";
export function VMStatusWidget(p: {
d: VMInfo;
onChange?: () => void;
}): React.ReactElement {
return <>TODO</>;
}