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

# Report

> The full Profit & Loss report.

![Profit And Loss Table](https://github.com/Layer-Fi/layer-react/assets/1592431/8bca34d1-6357-4030-811a-e46fe1f83195)

```tsx theme={null}
import { ProfitAndLoss } from "@layerfi/components";
…
<ProfitAndLoss>
  <ProfitAndLoss.Table>
</ProfitAndLoss>
```

### Properties

<ParamField body="lockExpanded" type="boolean">
  Forces the table to be fully expanded showing all rows.
</ParamField>

<ParamField body="stringOverrides" type="ProfitAndLossTableStringOverrides">
  Overrides for default strings in the component.

  <Expandable title="ProfitAndLossTableStringOverrides properties">
    <ParamField body="grossProfitLabel" type="string">
      Override for the "Gross Profit" row header text. Defaults to "Gross Profit".
    </ParamField>

    <ParamField body="profitBeforeTaxesLabel" type="string">
      Override for the "Profit before taxes" row header text. Deafaults to "Profit before taxes".
    </ParamField>

    <ParamField body="netProfitLabel" type="string">
      Override for the "Net Profit" row header text. Defaults to "Net Profit".
    </ParamField>
  </Expandable>
</ParamField>
