Good start to multi-window

This commit is contained in:
Gregory Schier
2023-03-28 18:29:40 -07:00
parent 4f501abb72
commit 4c22215ca5
20 changed files with 771 additions and 517 deletions

View File

@@ -13,10 +13,10 @@ export function Confirm({ hide }: Props) {
return (
<HStack space={2} justifyContent="end">
<Button color="gray" onClick={hide}>
<Button className="focus" color="gray" onClick={hide}>
Cancel
</Button>
<Button ref={focusRef} color="primary">
<Button className="focus" ref={focusRef} color="primary">
Confirm
</Button>
</HStack>