> For the complete documentation index, see [llms.txt](https://react-through.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://react-through.js.org/api/throughprovider.md).

# ThroughProvider

This is communication center which must be the parent of all react elements

## Props

* `children`: *ReactElement*: Whole react tree of the applcation

## Examples

```javascript
const theApp = (
  <ThroughProvider>
    <App />
  </ThroughProvider>
)

ReactDOM.render(theApp, document.getElementById('root'))
```
