Simple css animated loader. Requires the parent to have the class property `position: relative` in order to be positioned correctly.

```js
<div style={{ position: 'relative', width: '200px', height: '100px' }}>
  <Loader message="fetching your data..." />
</div>
```