# Installing UI Kit (deprecated)

{% hint style="warning" %}
To provide greater customization options, we have open-sourced our UIKit and deprecated the packaged UIKit version previously available. For the best quality and access to the latest features, we strongly recommend integrating our UIKit with the open-source version. For more details, please refer to[ the Web UIKit Installation Guide ](/social-plus-uikit/uikit-3/web/web-uikit-installation-guide.md)section.
{% endhint %}

## **The UiKitProvider**

At the core of your project, you will need to import and decorate your application with the `UiKitProvider`.

```javascript
import { UiKitProvider } from ‘@amityco/ui-kit’

export default function App() {
  return <UiKitProvider>
    <YourApp />
  </UiKitProvider>
}
```

{% hint style="warning" %}
social.plus UIKit already includes our SDK. Don’t install social.plus SDK separately if you have already installed the UIKit.
{% endhint %}

## **Using the UIKit**

You can use the UIKit components with this code:

```javascript
<AmityUiKitProvider key={userId} apiKey={apiKey} userId={userId}>
    <AmityUiKitSocial />
</AmityUiKitProvider>
```

{% hint style="info" %}
Check this [sample code](https://github.com/AmityCo/Amity-Social-Cloud-Web-Sample-Apps/blob/main/ui-kit-app/src/App.js) in our web sample application.
{% endhint %}


---

# Agent Instructions: 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:

```
GET https://docs.social.plus/social-plus-uikit/uikit-3/web/install-ui-kit.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
