```js
initialState = {
	country: 'United Kingdom',
};

<CountryPicker 
	name="standard"
	value={state.country} 
	onChange={(e) => setState({ country: e.target.value })} 
/>
```

Place a shortlist of countries at the top using the prioritise attribute:

```js

initialState = {
	country: '',
};

<CountryPicker 
	name="shortlisted"
	value={state.country} 
	onChange={e => setState({ country: e.target.value })} 
	prioritise={['Tunisia', 'Panama', 'Belgium']}
	placeholder="Select team..."
/>
```
