import { BROWSER_OS_PLATFORM } from '@/react/constants';
import { Tooltip } from '@@/Tip/Tooltip';
const editorConfig = {
mac: {
tooltip: (
<>
Within the console:
Cmd+C - Copy
Cmd+V - Paste
or right-click -> Copy/Paste
>
),
},
lin: {
tooltip: (
<>
Within the console:
Ctrl+Insert - Copy
Shift+Insert - Paste
or right-click -> Copy/Paste
>
),
},
win: {
tooltip: (
<>
Within the console:
Ctrl+Insert - Copy
Shift+Insert - Paste
or right-click -> Copy/Paste
>
),
},
} as const;
export function TerminalTooltip() {
return ;
}