mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 11:26:41 +00:00
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
export const renderAltOrOptlKey = () => {
|
|
return isMac() ? '⌥' : 'ALT'
|
|
}
|
|
|
|
export const renderCmdOrCtrlKey = () => {
|
|
return isMac() ? '⌘' : 'CTRL'
|
|
}
|