Demos
Empty
<Field.PostalCodeAndCitypostalCode={{onChange: (value) => console.log('postalCode onChange', value),}}city={{onChange: (value) => console.log('city onChange', value),}}/>
Placeholder
<Field.PostalCodeAndCitypostalCode={{placeholder: '????',onChange: (value) => console.log('postalCode onChange', value),}}city={{placeholder: 'Your city..',onChange: (value) => console.log('city onChange', value),}}/>
Label
<Field.PostalCodeAndCitypostalCode={{label: 'PNR',onChange: (value) => console.log('postalCode onChange', value),}}city={{label: 'CTY',onChange: (value) => console.log('city onChange', value),}}/>
Label and value
<Field.PostalCodeAndCitypostalCode={{label: 'Pnr.',value: '0788',onChange: (value) => console.log('postalCode onChange', value),}}city={{value: 'Oslo',onChange: (value) => console.log('city onChange', value),}}/>
Disabled
<Field.PostalCodeAndCitypostalCode={{value: '1234',disabled: true,onChange: (value) => console.log('postalCode onChange', value),}}city={{value: 'Oslo',disabled: true,onChange: (value) => console.log('city onChange', value),}}/>
Error
<Field.PostalCodeAndCitypostalCode={{}}city={{}}error={new FormError('This is what is wrong...')}/>
Validation - Required
<Field.PostalCodeAndCitypostalCode={{required: true,}}city={{required: true,}}/>