
## Feature Examples


### Locale
- description: Setting the `locale` prop will make any component in the library to use that locale automatically without the need to configure each component separately. The list of possible locales is listed in the component's API
- example: 
```jsx 
<StorybookComponents.Stack>
  <FormField label="Without locale context">
    <Calendar autoFocus={false} />
  </FormField>
  <FormField label="With locale context">
    <WixStyleReactEnvironmentProvider locale="es">
      <Calendar autoFocus={false} />
    </WixStyleReactEnvironmentProvider>
  </FormField>
</StorybookComponents.Stack>
```




    


