> ## Documentation Index
> Fetch the complete documentation index at: https://dynamic-docs-feat-sidebar-revamp.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Hooks Introduction

Dynamic offers many different custom [React hooks](https://react.dev/learn/reusing-logic-with-custom-hooks#extracting-your-own-custom-hook-from-a-component) for different tasks within your code.

You can import them directly from the @dynamic-labs/sdk-react-core package, for example:

```jsx
import { useDynamicContext } from '@dynamic-labs/sdk-react-core'
```

We've grouped the hooks into the following categories:

* [Login & User Management](/react-sdk/hooks/login-user-management)
* [Wallets](/react-sdk/hooks/wallets)
* [Funding](/react-sdk/hooks/funding)
* [Other](/react-sdk/hooks)

The most important hook is [useDynamicContext](/react-sdk/hooks/usedynamiccontext) which gives you access to the full context which is initially set via the `DynamicContextProvider` component, so we've kept that separate.
