about summary refs log tree commit diff
path: root/src/lib/statsig/statsig.tsx
blob: 88a57c3fcdc1d49c4b130dffb8c4f31293c868d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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
}