Skip to main content

Overview

While independent research shows that 62% of small businesses don’t use any accounting software yet, 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 Xero 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 Xero Import

To initialize the Tight Embedded experience in your React project, follow the instructions on Embedding Tight’s white-labeled UI. Below is an example embedding of the Xero Import:
XeroImport.tsx
import { AccountingImport, Tight } from "@tight-embedded/react";
import "@tight-embedded/react/index.css";

function XeroImport({ accessToken }) {
    return (
      <Tight environment="SANDBOX" accessToken={accessToken} >
        <AccountingImport type={"XERO"} />
      </Tight>
    )
}