WithValidation example:

```js
<WithValidation name="example" validation={val => val === '123' ? true : 'Can you count?'}>
	<Input type="text" placeholder="Only 123 is valid..." />
</WithValidation>
```
