@@ -29,7 +29,7 @@ Fingerprint is a device intelligence platform offering industry-leading accuracy
2929 - [ Requirements] ( #requirements )
3030 - [ Installation] ( #installation )
3131 - [ Getting started] ( #getting-started )
32- - [ 1. Wrap your application (or component) in ` <FpProvider > ` .] ( #1-wrap-your-application-or-component-in-fpprovider )
32+ - [ 1. Wrap your application (or component) in ` <FingerprintProvider > ` .] ( #1-wrap-your-application-or-component-in-FingerprintProvider )
3333 - [ 2. Use the ` useVisitorData() ` hook in your components to identify visitors] ( #2-use-the-usevisitordata-hook-in-your-components-to-identify-visitors )
3434 - [ Linking and tagging information] ( #linking-and-tagging-information )
3535 - [ Caching strategy] ( #caching-strategy )
@@ -73,7 +73,7 @@ pnpm add @fingerprint/react
7373In order to identify visitors, you'll need a Fingerprint Pro account (you can [ sign up for free] ( https://dashboard.fingerprint.com/signup/ ) ).
7474To get your API key and get started, see the [ Fingerprint Pro Quick Start Guide] ( https://docs.fingerprint.com/docs/quick-start-guide ) .
7575
76- ### 1. Wrap your application (or component) in ` <FpProvider > ` .
76+ ### 1. Wrap your application (or component) in ` <FingerprintProvider > ` .
7777
7878- Set ` apiKey ` to your Fingerprint [ Public API Key] ( https://dashboard.fingerprint.com/api-keys ) .
7979- Set ` region ` if you have chosen a non-global [ region] ( https://docs.fingerprint.com/docs/regions ) during registration.
@@ -85,20 +85,20 @@ To get your API key and get started, see the [Fingerprint Pro Quick Start Guide]
8585import React from ' react'
8686import ReactDOM from ' react-dom/client'
8787import {
88- FpProvider ,
88+ FingerprintProvider ,
8989 FingerprintJSPro ,
9090} from ' @fingerprint/react'
9191import App from ' ./App'
9292
9393const root = ReactDOM .createRoot (document .getElementById (' app' ))
9494
95- // <FpProvider /> supports the same options as `start()` function.
95+ // <FingerprintProvider /> supports the same options as `start()` function.
9696root .render (
97- < FpProvider
97+ < FingerprintProvider
9898 apiKey= ' your-public-api-key'
9999 >
100100 < App / >
101- < / FpProvider >
101+ < / FingerprintProvider >
102102)
103103```
104104
0 commit comments