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 }