about summary refs log tree commit diff
path: root/src/components/ContextMenu/index.web.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-03-28 08:43:40 +0200
committerGitHub <noreply@github.com>2025-03-28 08:43:40 +0200
commit55a40c2436b68dea850e54a65c5dd197132c08e4 (patch)
treee6d4d2d45ce5a3475aa4f73556910ff7d818986f /src/components/ContextMenu/index.web.tsx
parentac2c2a9a1d2d09442a497dc0dcfd8bc0bf715372 (diff)
downloadvoidsky-55a40c2436b68dea850e54a65c5dd197132c08e4.tar.zst
[DMs] Emoji reaction picker (#8023)
Diffstat (limited to 'src/components/ContextMenu/index.web.tsx')
-rw-r--r--src/components/ContextMenu/index.web.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/ContextMenu/index.web.tsx b/src/components/ContextMenu/index.web.tsx
index f7e3b0c34..41fa62474 100644
--- a/src/components/ContextMenu/index.web.tsx
+++ b/src/components/ContextMenu/index.web.tsx
@@ -1,5 +1,12 @@
+import {type AuxiliaryViewProps} from './types'
+
 export * from '#/components/Menu'
 
 export function Provider({children}: {children: React.ReactNode}) {
   return children
 }
+
+// native only
+export function AuxiliaryView({}: AuxiliaryViewProps) {
+  return null
+}