# Multi View

The `MultiView` component is a versatile interface that integrates three key functionalities: Swaps, Buy, and Transfer, all within a single view.

This component is designed to allow users to navigate between these functionalities effortlessly.

<div align="left"><figure><img src="/files/xMv37Im8HF1cjotn9vrV" alt="" width="375"><figcaption></figcaption></figure></div>

### Props

**`className`** (optional):

Add classes for custom styling to the container of this component

**`tabsConfig`** (optional):\
A configuration object that allows you to enable or disable specific tabs within the `MultiView` component. You can also set the order in which these tabs appear. The configuration is structured as follows:

```javascript
export type TabsConfig = {
  [Tabs.TRANSFER]?: TransferTabConfig, // Configuration for the Transfer tab
  [Tabs.FIAT_ON_RAMP]?: FiatOnRampTabConfig, // Configuration for the Buy tab
  [Tabs.SWAPS]?: AggregatedSwapTabConfig, // Configuration for the Swaps tab
}
```

Each config option accepts all the props accepted by the respective components. You can refer to those props here -

1. [Swaps](/cosmos/elements/components/aggregated-swaps.md#props)
2. [Fiat On-ramp](/cosmos/elements/components/fiat-on-ramp.md#props)
3. [Transfer](/cosmos/elements/components/ibc-transfer.md#props)


---

# 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.leapwallet.io/cosmos/elements/components/multi-view.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.
