# Add Intelligems Provider

The [IntelligemsGatsbyProvider](https://headless.intelligems.io/version-1.0.0-beta/gatsby-steps/add-intelligems-provider) [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 { IntelligemsGatsbyProvider } from "@intelligems/headless/gatsby"

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