about summary refs log tree commit diff
path: root/src/lib/statsig/statsig.tsx
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2024-03-06 19:38:48 +0900
committerGitHub <noreply@github.com>2024-03-06 19:38:48 +0900
commitf3db23a3b14e9444cb499c727b9d62c414e5a840 (patch)
tree4b9f39447c7c53d2baf3dd4029b2f8ea30e3c9b1 /src/lib/statsig/statsig.tsx
parent0c6a82062f9c9c47338fe50f0ef37a1c068939c2 (diff)
parenteb298d2e60a0ddf26ebaf8f27373418bbf7769e3 (diff)
downloadvoidsky-f3db23a3b14e9444cb499c727b9d62c414e5a840.tar.zst
Merge branch 'bluesky-social:main' into patch-3
Diffstat (limited to 'src/lib/statsig/statsig.tsx')
-rw-r--r--src/lib/statsig/statsig.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/statsig/statsig.tsx b/src/lib/statsig/statsig.tsx
new file mode 100644
index 000000000..88a57c3fc
--- /dev/null
+++ b/src/lib/statsig/statsig.tsx
@@ -0,0 +1,11 @@
+import React from 'react'
+
+export function useGate(_gateName: string) {
+  // Not enabled for native yet.
+  return false
+}
+
+export function Provider({children}: {children: React.ReactNode}) {
+  // Not enabled for native yet.
+  return children
+}