> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Introduction ## Article: Introduction ## Article Link: https://dev.wix.com/docs/sdk/core-modules/sdk-react-deprecated/introduction.md ## Article Content: # React SDK
Deprecated This module is deprecated. For more information, see Migrating.md from sdk-react.> **Note:** This API is not intended for use in [site development](https://dev.wix.com/docs/api-reference/articles/platform-overview/about-wix-site-development.md) or when [coding in Blocks](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/wix-blocks/code-in-blocks/about-coding-in-blocks.md). The React SDK enables the integration of Wix JavaScript SDK APIs within React components. It's compatible with both [Wix Headless](https://dev.wix.com/docs/go-headless/get-started/overview/about-wix-headless.md) and [Wix Apps](https://dev.wix.com/docs/build-apps.md). When developing an app with [dashboard extensions](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/about-dashboard-extensions.md), the React SDK can be effectively used alongside the [React Dashboard SDK](invalid-url). The React SDK (`@wix/sdk-react`) includes everything from the regular SDK (`@wix/sdk`). As a result, you only have to install `@wix/sdk-react`, and you can import anything from `@wix/sdk` through `@wix/sdk-react`. In addition, the React SDK offers the following components and hooks: * [WixProvider](invalid-url): Enables the use of Wix JavaScript SDKs within React components. All functionality of `@wix/sdk-react` must be contained inside a Wix Provider. * [useWixAuth()](invalid-url): Returns the authentication strategy of the enclosing `WixProvider`. * [useWixFetchWithAuth()](invalid-url): Returns a function used to make API calls with a Wix access token in the `Authorization` header. * [useWixModules()](invalid-url): Binds an SDK module to the authorization strategy of the enclosing `WixProvider` and returns an initialized module. To get started using the React SDK, see [Setup](invalid-url).