Fix imports

This commit is contained in:
Gregory Schier
2025-11-24 08:55:55 -08:00
parent a8402824ed
commit 0cad8f69e2
2 changed files with 10 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
import classNames from 'classnames';
import type React from 'react';
import type { ReactNode } from 'react';
import { Fragment } from 'react';
import type { HotkeyAction } from '../../hooks/useHotKey';
import { HotKey } from './HotKey';
@@ -7,7 +7,7 @@ import { HotKeyLabel } from './HotKeyLabel';
interface Props {
hotkeys: HotkeyAction[];
bottomSlot?: React.ReactNode;
bottomSlot?: ReactNode;
className?: string;
}