# Add Intelligems Provider

The `IntelligemsHydrogenProvider` component stores Intelligems data in React Context so hooks and components can access it throughout your app.

### Example Configuration

{% hint style="warning" %}
**REQUIRED:** The `activeCurrencyCode` prop is required and must be provided.
{% endhint %}

<pre class="language-tsx"><code class="lang-tsx">import { IntelligemsHydrogenProvider } from "@intelligems/headless/hydrogen"

<strong>export default function MyApp({ Component, pageProps }: AppProps) {
</strong>  return (
    &#x3C;>
      &#x3C;IntelligemsHydrogenProvider
         config={intelligems} // optional: returned from your loader response
         organizationId={process.env.INTELLIGEMS_ORG_ID}
         storefrontApiToken={process.env.SHOPIFY_STOREFRONT_ACCESS_TOKEN}
         activeCurrencyCode="USD"
         antiFlicker={true}
      >
        ...
      &#x3C;/IntelligemsHydrogenProvider>
    &#x3C;/>
  )
}
</code></pre>
