# Language Menu component
Displays all the languages that are present in the "app.config.json" or the defaul one (EN).

- [Basic usage](#basic-usage)
- [Details](#details)
- [Nested menu language](#nested-menu-language)
- [Nested menu details](#nested-menu-details)
## Basic usage
How to attach an ADF Language Menu as main menu
```html
```
## Details
In the previous example we are using the ADF Language Menu as main menu.
The Language Menu component is able to fetch all the languages from the "app.config.json".
This is how the configuration looks like in the the "app.config.json"
```json
"languages": [
{
"key": "en",
"label": "English"
},
{
"key": "fr",
"label": "French"
},
{
"key": "it",
"label": "Italian"
}
]
```
In case no setting is provided, the component shows only the English language.
## Nested Menu language
How to attach an ADF Language Menu as nested menu
```html
```

## Nested menu details
In the previous example we are using the ADF Language Menu as nested menu.