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

# Tasks

> Bookkeeping task list for business owners.

![Tasks component](https://github.com/user-attachments/assets/a54c0727-6428-4fa7-a4be-7ece9355ebe0)

```tsx theme={null}
import { Tasks } from "@layerfi/components";
…
<Tasks
  stringOverrides={{ header: 'Bookkeeping Tasks' }}
  onClickReconnectAccounts={() => navigate('/accounts')}
/>
```

### Properties

<ParamField body="mobile" type="boolean" default="false">
  Enables mobile-optimized layout for the tasks component.
</ParamField>

<ParamField body="stringOverrides" type="TasksStringOverrides">
  <Expandable title="TasksStringOverrides properties">
    <ParamField body="header" type="string">
      Override for the tasks header text.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="onClickReconnectAccounts" type="() => void">
  Callback triggered when the user clicks the reconnect-accounts action in the task list.
</ParamField>
