> For the complete documentation index, see [llms.txt](https://developer.usemultiplier.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.usemultiplier.com/multiplier-embed-sdks/components.md).

# Components

The Partner SDK offers a collection of pre-built React components designed to accelerate your integration. These components handle the heavy lifting of API interaction, state management, and UI rendering, allowing you to embed complex Multiplier workflows with just a few lines of code.

### Available Components

| Component                | Description                                                                                                                                                |
| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Magic Link**           | A wrapper component that handles the authentication handshake and redirects users to specific pages on the Multiplier platform (e.g., Team View, Payroll). |
| **Employee Offboarding** | A comprehensive UI wizard that allows you to embed the full resignation or termination workflow directly within your application.                          |
| **Employee Onboarding**  | A comprehensive UI wizard provides a complete multi-step flow for company admins to onboard new employees, contractors, or freelancers to their team.      |

### General Usage

All components in this SDK share a few common characteristics:

1. **Provider Requirement:** They must be rendered inside a `MultiplierGlobalConfigProvider` to access the authentication context.
2. **Responsive Design:** Components are built to be responsive, but some (like *Employee Offboarding*) act as full-page containers and work best inside a Modal or a dedicated route.
3. **Theming:** They automatically inherit the theme configurations set in your global config.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developer.usemultiplier.com/multiplier-embed-sdks/components.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
