> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tight.com/llms.txt
> Use this file to discover all available pages before exploring further.

# QuickBooks Online Import

> Import accounting data from QuickBooks Online

## Overview

While [independent research shows that 62% of small businesses don't use any accounting software yet](https://www.tight.com/embedded-accounting-smb-vertical-software-report), leaving a major greenfield opportunity for your platform, Tight's customer-partners have also migrated thousands of businesses off of QuickBooks Online using Tight's QBO Import functionality.

The QBO Import functionality allows you to transfer a business’s QBO data into your embedded accounting platform, preserving the business’s historical financial information.

## Embedding the QuickBooks Online Import

To initialize the Tight Embedded experience in your React project, follow the instructions on [Embedding Tight's white-labeled UI](/embeddable-ui/react/patterns/embedding).

Below is an example embedding of the QuickBooks Online Import:

```TSX QboImport.tsx theme={null}
import { AccountingImport, Tight } from "@tight-embedded/react";
import "@tight-embedded/react/index.css";

function QboImport({ accessToken }) {
    return (
      <Tight environment="SANDBOX" accessToken={accessToken} >
        <AccountingImport type={"QBO"} />
      </Tight>
    )
}
```
