# useCountries

Custom hook to return a list of countries translated using react-admin useLocaleState hook and [i18n-iso-countries](https://www.npmjs.com/package/i18n-iso-countries).

### Usage

```tsx
import { useCountries } from '@ra-libs/react';

const countries = useCountries();
```

### Example

```json
[
  {
    "id": "<id>",
    "name": "<translated-name>"
  },
  {
    "id": "BR",
    "name": "Brasil"
  }
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ra-libs.gitbook.io/react/docs/hooks/usecountries.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
