The error state will only show if embedded under a class ```.was-validated```.  The recommended way to use this is the bootstrap ```<Form validated={true}>``` tag which adds this class.

```js
import { Control, Form } from 'frontend-react-components';

<Control errorMessage="Email is required." note="Enter email">
    <Form.Control type="email" placeholder="Enter email" />
</Control>

```
