> ## 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.

# Report Dashboard

> Access and manage all your business's financial reports

## Overview

Tight's Report Dashboard is a full-featured embedded experience (including all drill-down rows) for everything related to reports; all you need to do is add a "Reports" item to your product's navigation.

## Embedding the Report Dashboard

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 Report Dashboard:

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

function Reports({ accessToken }) {
    return (
      <Tight environment="SANDBOX" accessToken={accessToken} >
        <ReportDashboard />
      </Tight>
    )
}
```

## Props

<ParamField body={"reports"} type={"string[]"} post={["optional"]}>
  The set of reports to show on the dashboard.

  Available options: `AGED_ACCOUNTS_PAYABLE`, `AGED_ACCOUNTS_RECEIVABLE`, `BALANCE_SHEET`, `CASH_FLOW`, `EXPENSES_BY_CATEGORY`, `EXPENSES_BY_VENDOR`, `PROFIT_AND_LOSS`, `FORM_1040_SCHEDULE_C`, `FORM_1065`, `FORM_1120S`, `FORM_1120`, `T2125, `TAX\_SUMMARY`, `TRIAL\_BALANCE\`,
</ParamField>

<ParamField body={"showReportSections"} type={"boolean"} post={["optional"]}>
  If you prefer for the list of reports to not be broken into sections, you can set `showReportSections` to false.
</ParamField>
