---
title: TLErrorBoundaryProps
status: published
category: editor
group: Interface
author: api
date: 06/23/2023
order: 129
---Public Interface
Table of Contents
- [Properties](#properties)
- [children](#TLErrorBoundaryProps-children-member)
- [fallback](#TLErrorBoundaryProps-fallback-member)
- [onError](#TLErrorBoundaryProps-onError-member)
##### Signature
```ts
interface TLErrorBoundaryProps {}
```
---
## Properties
### `children` \{#TLErrorBoundaryProps-children-member}
Public PropertySignature
##### Signature
```ts
children: React.ReactNode
```
---
### `fallback` \{#TLErrorBoundaryProps-fallback-member}
Public PropertySignature
##### Signature
```ts
fallback: (props: { error: unknown }) => any
```
---
### `onError` \{#TLErrorBoundaryProps-onError-member}
Public PropertySignature
##### Signature
```ts
onError?: ((error: unknown) => void) | null
```
---