From eb298d2e60a0ddf26ebaf8f27373418bbf7769e3 Mon Sep 17 00:00:00 2001 From: dan Date: Wed, 6 Mar 2024 05:55:34 +0000 Subject: Initial feature gating and A/B testing integration (#3122) * Add statsig dependency * Add SDK provider * Move to separate file, add tier and hashing * Disable local storage for now * Add initial gate testing fixture * Fork for web just in case * More WIP * wip * Rm test gate * Add shim on native * Clarify --- src/lib/statsig/statsig.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/lib/statsig/statsig.tsx (limited to 'src/lib/statsig/statsig.tsx') 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 +} -- cgit 1.4.1