# Add Intelligems Provider

The IntelligemsPackProvider [Higher-Order Component](https://legacy.reactjs.org/docs/higher-order-components.html) will save all relevant data into React Context, which will be available throughout the app as needed.

### Example Configuration

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

<strong>export default function MyApp({ Component, pageProps }: AppProps) {
</strong>  return (
    &#x3C;>
      &#x3C;IntelligemsPackProvider
         organizationId={process.env.NEXT_PUBLIC_INTELLIGEMS_ORG_ID}
         storefrontApiToken={process.env.NEXT_PUBLIC_STOREFRONT_ACCESS_TOKEN}
         antiFlicker={true}
      >
        ...
      &#x3C;/IntelligemsPackProvider>
    &#x3C;/>
  )
}
</code></pre>
