diff --git a/src/lib/hotkeys/index.native.tsx b/src/lib/hotkeys/index.native.tsx new file mode 100644 index 0000000000..0bfce1975c --- /dev/null +++ b/src/lib/hotkeys/index.native.tsx @@ -0,0 +1,12 @@ +import React from 'react' + +export function Provider({children}: React.PropsWithChildren) { + return <>{children} +} + +export function useHotkeysContext() { + return { + enableScope: () => {}, + disableScope: () => {}, + } +}