> For the complete documentation index, see [llms.txt](https://docs.quadrata.com/integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.quadrata.com/integration/how-to-integrate/quadrata-sdk/advanced/client-libraries/client-eager-loading.md).

# Client Eager Loading

By default, the `Quadrata` entry point component uses Lazy Loading to load the `@quadrata/client-react` and `@quadrata/kyb-react` libraries only when they are needed. This helps bring down the size of the First Load JS bundles.

If you cannot or do not want to support [Lazy Loading](/integration/how-to-integrate/quadrata-sdk/advanced/client-libraries/client-lazy-loading.md), you can use Eager Loading.

```tsx
import { QuadrataEager } from '@quadrata/sdk/client';

export default function SomeComponent() {
    return (
        <QuadrataEager />
    );
}
```
