gradual-rollout
Initial Setup with FlagProvider In your main App component or wherever you initialize Unleash: import { FlagProvider } from ‘@unleash/proxy-client-react’; function App() { return ( <FlagProvider config={{ url: ‘your-unleash-proxy-url’, clientKey: ‘your-client-key’, refreshInterval: 15, appName: ‘banking-app’, context: { userId: ‘default-user’ // Initial context } }}> <YourBankingApp /> </FlagProvider> ); } Dynamic Context Update Component Create a…