Skip to main content

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.

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 Wave 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 Wave 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 Wave Import:
WaveImport.tsx
import { AccountingImport, Tight } from "@tight-embedded/react";
import "@tight-embedded/react/index.css";

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