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

# React

Utilisation de Preact

```jsx
export class AppElement extends HTMLElement {
    connectedCallback() {
        render(<App />, this);
    }

    disconnectedCallback() {}
}

customElements.define('checkout-container', AppElement);
```
