```
<div>
  <UIStates
    loading={false}
    data={{value: "hello"}}
    label="hello"
  >
    {() => (<Button> hello </Button>)}
  </UIStates> 
  <UIStates
    loading={false}
    label="hello"
    componentAlertWrapper={Section}
    size="xs"
  >
    {() => (<Button> hello </Button>)}
  </UIStates>
 </div>
```
